码迷,mamicode.com
首页 > 其他好文 > 详细

通过反射获取列表属性里保存的对象类型

时间:2015-04-08 12:29:19      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:

假设有个对象里有一个list<Object> listProperty 属性,要获取Object的类型:

Class<?> typeClass = field.getType();
if (List.class.isAssignableFrom(typeClass)) {
      Type fieldType = field.getGenericType();
       if (fieldType instanceof ParameterizedType) {
               ParameterizedType paramType = (ParameterizedType) fieldType;
               Type[] genericTypes = paramType.getActualTypeArguments();
               if (genericTypes != null && genericTypes.length > 0) {
                        if (genericTypes[0] instanceof Class<?>) {
                              Class<?> subType = (Class<?>) genericTypes[0];
                        }
               }
       }
}

其中subType就是Object的对象类型。

通过反射获取列表属性里保存的对象类型

标签:

原文地址:http://www.cnblogs.com/BensonHe/p/4401783.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!