阅读量:0
在Java中,由于类型擦除,我们无法直接获取当前类的泛型类型。但是,我们可以通过子类或者接口实现的方式来获取泛型类型。这里有一个例子:
public abstract class TypeReference<T> { private final Type type; protected TypeReference() { Type superClass = getClass().getGenericSuperclass(); if (superClass instanceof Class) { throw new IllegalArgumentException("Internal error: TypeReference constructed without actual type information"); } else { this.type = ((ParameterizedType) superClass).getActualTypeArguments()[0]; } } public Type getType() { return this.type; } }
使用这个TypeReference
类,你可以获取泛型类型。例如:
public class MyClass<T> { private TypeReference<T> typeReference = new TypeReference<T>() {}; public Type getGenericType() { return typeReference.getType(); } }
在这个例子中,我们创建了一个名为MyClass
的泛型类,并在其中定义了一个TypeReference
对象。通过创建一个匿名子类并实例化TypeReference
,我们可以获取泛型类型。然后,我们可以通过调用getGenericType()
方法来获取泛型类型。
请注意,这种方法仅适用于子类或接口实现。在其他情况下,由于类型擦除,我们无法直接获取泛型类型。