ParameterizedType.getOwnerType() 函数怎么用?

java.lang.reflect.ParameterizedType

Type getOwnerType()返回 Type 对象,表示此类型是其成员之一的类型。例如,如果此类型为 O<T>.I<S>,则返回 O<T> 的表示形式。 
如果此类型为顶层类型,则返回 null。 

返回:
Type 对象,表示此类型是其成员之一的类型。如果此类型是顶层类型,则返回 null 

这是jdk帮助文档里面的内容,这个函数有什么用?里面说的顶层类型是什么意思?

阅读 8.1k
1 个回答
✓ 已被采纳新手上路,请多包涵
public static void main(String[] args)
{
    Method method = new GenericDemo().getClass().getMethod("applyMethod",Map.Entry.class);
    Type[] types = method.getGenericParameterTypes();
    ParameterizedType pType = (ParameterizedType)types[0];

    //返回所有者类型,打印结果是interface java.util.Map
    System.out.println(pType.getOwnerType());

}

public static <T,U> void applyMethod(Map.Entry<T,U> mapEntry){

}

Map接口就是Map.Entry的所有者

推荐问题
logo
101 新手上路
子站问答
访问
宣传栏