在我的代码中,a有以下抽象超类
public abstract class AbstractClass<Type extends A> {...}
和一些像
这样的子课程public class ChildClassA extends AbstractClass<GenericTypeA> {...}
public class ChildClassB extends AbstractClass<GenericTypeB> {...}
我正在寻找一种优雅的方式,我可以通用的方式在抽象类中使用子类的泛型类型(GenericTypeA,GenericTypeB,...)。
为了解决这个问题,我目前定义了方法
protected abstract Class<Type> getGenericTypeClass();
在我的抽象类中实现了方法
@Override
protected Class<GenericType> getGenericTypeClass() {
return GenericType.class;
}
在每个儿童班。
是否可以在我的抽象类中获取子类的泛型类型而不实现此帮助器方法?
BR,
马库斯
答案 0 :(得分:10)
我认为这是可能的。我看到这被用在DAO模式和泛型中。例如 考虑课程:
public class A {}
public class B extends A {}
你的通用课程:
import java.lang.reflect.ParameterizedType;
public abstract class Test<T extends A> {
private Class<T> theType;
public Test() {
theType = (Class<T>) (
(ParameterizedType) getClass().getGenericSuperclass())
.getActualTypeArguments()[0];
}
// this method will always return the type that extends class "A"
public Class<T> getTheType() {
return theType;
}
public void printType() {
Class<T> clazz = getTheType();
System.out.println(clazz);
}
}
你可以有一个类Test1,用类B扩展Test(它扩展了A)
public class Test1 extends Test<B> {
public static void main(String[] args) {
Test1 t = new Test1();
Class<B> clazz = t.getTheType();
System.out.println(clazz); // will print 'class B'
System.out.println(printType()); // will print 'class B'
}
}
答案 1 :(得分:0)
我不确定我是否完全理解你的问题 - <Type>
是子类的泛型类型,即使它是在抽象类中表达的。例如,如果您的抽象超类定义了一个方法:
public void augment(Type entity) {
...
}
并且您实例化ChildClassA
,您只能使用augment
的实例调用GenericTypeA
。
现在,如果你想要一个类文字,那么你需要按照你的指示提供方法。但是,如果您只想要通用参数,则无需执行任何特殊操作。