java – 在它的抽象超类中使用泛型类型的子类?

在我的代码中,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,

马库斯

解决方法

我认为这是可能的.我看到这被用在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'
     }
  }

相关文章

最近看了一下学习资料,感觉进制转换其实还是挺有意思的,尤...
/*HashSet 基本操作 * --set:元素是无序的,存入和取出顺序不...
/*list 基本操作 * * List a=new List(); * 增 * a.add(inde...
/* * 内部类 * */ 1 class OutClass{ 2 //定义外部类的成员变...
集合的操作Iterator、Collection、Set和HashSet关系Iterator...
接口中常量的修饰关键字:public,static,final(常量)函数...