我有一个界面
public interface FooBar<T> { }
我有一个实现它的类
public class BarFoo implements FooBar<Person> { }
通过反射,我想获取一个BarFoo实例,并得到它实现的FooBar版本是Person。
我使用BarFoo的.getInterfaces
来回到FooBar,但这并没有帮助我找出T是什么。
答案 0 :(得分:33)
您可以按Class#getGenericInterfaces()
获取某个类的通用接口,然后依次检查它是否为ParameterizedType
,然后相应地抓取actual type arguments。
Type[] genericInterfaces = BarFoo.class.getGenericInterfaces();
for (Type genericInterface : genericInterfaces) {
if (genericInterface instanceof ParameterizedType) {
Type[] genericTypes = ((ParameterizedType) genericInterface).getActualTypeArguments();
for (Type genericType : genericTypes) {
System.out.println("Generic type: " + genericType);
}
}
}
答案 1 :(得分:5)
尝试以下内容:
Class<T> thisClass = null;
Type type = getClass().getGenericSuperclass();
if (type instanceof ParameterizedType) {
ParameterizedType parameterizedType = (ParameterizedType) type;
Type[] typeArguments = parameterizedType.getActualTypeArguments();
thisClass = (Class<T>) typeArguments[0];
}