我应如何在RequestFactory
中实施Factory
界面,以便根据传递的类型创建StringRequest
或IntRequest
?
本质上我想动态创建参数化抽象类的具体类的实例,这在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");
}
}
答案 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已经指出了一种可能的替代解决方案,与我所写的非常相似,所以我只是指出他的答案。