动态调度和通用接口工厂

时间:2015-12-19 11:05:47

标签: java generics factory dispatch

我应如何在RequestFactory中实施Factory界面,以便根据传递的类型创建StringRequestIntRequest

本质上我想动态创建参数化抽象类的具体类的实例,这在Java中是否可行?

public class Main {

    public static void main(String[] args) {
        Integer mInt = 10;
        String mString = "string";

        MyRequest mReq1 = new Factory<>(mString).getRequest();
        mReq1.PerformMyRequest();

        MyRequest mReq2 = new Factory<>(mInt).getRequest();
        mReq2.PerformMyRequest();
    }
}

class Factory<T> implements RequestFactory<T> {

    private final MyRequest<T> Req;

    public Factory(T body) {
        Req = create(body);
    }

    public MyRequest<T> getRequest() {
        return Req;
    }

    @Override
    // How do I implement the interface here so
    // that correct factory is invoked depending on T
    // so that I can return either StringRequest or IntRequest
    public MyRequest<T> create(T body) {
        return null;
    }

}

工厂界面:

// Interface
interface RequestFactory<T> {
    MyRequest<T> create(T body);
}
// Concrete specialized factories
class StringFactory implements RequestFactory<String> {
    @Override
    public StringRequest create(String body) {
        return new StringRequest(body);
    }
}
class IntFactory implements RequestFactory<Integer> {
    @Override
    public IntRequest create(Integer body) {
        return new IntRequest(body);
    }
}

具有两个具体子项的通用抽象类

// ======================================================

// AbstractClass
abstract class MyRequest<T> {
    T mVal;

    MyRequest(T body) {
        mVal = body;
    }

    public void PerformMyRequest() {
        System.out.println("-> From abstract: " + mVal);

    }

}
// Concrete classes that I'd like to automatically
// create using the factory above
class StringRequest extends MyRequest<String> {

    StringRequest(String body) {
        super(body);
    }

    public void PerformMyRequest() {
        super.PerformMyRequest();
        System.out.println("  -> From StringRequest");
    }
}
class IntRequest extends MyRequest<Integer> {

    IntRequest(Integer body) {
        super(body);
    }

    public void PerformMyRequest() {
        super.PerformMyRequest();
        System.out.println("  -> From IntRequest");
    }
}

2 个答案:

答案 0 :(得分:3)

java无法做到这一点。您可以通过编写“MetaFactory”(即工厂工厂)来完成此操作,该工具会进行类型检查以选择要创建和返回的工厂实现。

public final class RequestMetaFactory {

  public RequestFactory<T> newFactory(T req) {
    if (req instanceof String) {
      return new StringRequestFactory((String)req);
    }

    if (req instanceof Integer) {
      return new IntegerRequestFactory((Integer)req);
    }

    throw new IllegalArgumentException(req.getClass() + " not a supported arg type");
  }

}

通过执行SPI查找来查找实际的RequestFactory实例并询问每个实例支持的类型,可以使其变得更加复杂。

答案 1 :(得分:0)

在Java中,泛型类型仅用于编译时类型检查,并且通常在运行时不可用。这意味着您无法根据T方法中的create做出任何运行时决策。

您也无法从知道自己希望RequestFactory<String>了解&#34;&#34;&#34;为此目的的具体实施是StringFactory。可能还有其他类也扩展RequestFactory<String>,因此您必须明确说明StringFactory是您想要的地方。如果这是C ++,您可以编写模板特化来说明&#34;这是 实现RequestFactory<String>&#34;,但这对于泛型来说是不可能的。

Brett Okken已经指出了一种可能的替代解决方案,与我所写的非常相似,所以我只是指出他的答案。