Generics in return types of static methods and inheritance
- by Axel
Generics in return types of static methods do not seem to get along well with inheritance. Please take a look at the following code:
class ClassInfo<C> {
public ClassInfo(Class<C> clazz) {
this(clazz,null);
}
public ClassInfo(Class<C> clazz, ClassInfo<? super C> superClassInfo) {
}
}
class A {
public…