浏览 5226 次
精华帖 (0) :: 良好帖 (0) :: 新手帖 (1) :: 隐藏帖 (9)
|
|
---|---|
作者 | 正文 |
发表时间:2010-10-22
最后修改:2010-11-18
/** * 通过反射, 获得Class定义中声明的父类的泛型参数的类型. * 如无法找到, 返回Object.class. * * 如public UserDao extends HibernateDao<User,Long> * * @param clazz clazz The class to introspect * @param index the Index of the generic ddeclaration,start from 0. * @return the index generic declaration, or Object.class if cannot be determined */ public static Class getSuperClassGenricType(final Class clazz, final int index) { Type genType = clazz.getGenericSuperclass(); if (!(genType instanceof ParameterizedType)) { logger.warn(clazz.getSimpleName() + "'s superclass not ParameterizedType"); return Object.class; } Type[] params = ((ParameterizedType) genType).getActualTypeArguments(); if (index >= params.length || index < 0) { logger.warn("Index: " + index + ", Size of " + clazz.getSimpleName() + "'s Parameterized Type: " + params.length); return Object.class; } if (!(params[index] instanceof Class)) { logger.warn(clazz.getSimpleName() + " not set the actual class on superclass generic parameter"); return Object.class; } return (Class) params[index]; }
声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |
发表时间:2010-10-22
怎么把springside的工具类都copy过来了
|
|
返回顶楼 | |
发表时间:2010-10-22
JAVA反射免费资源下载:
http://www.51px.asia/px/jiangtang.aspx |
|
返回顶楼 | |
发表时间:2010-10-23
zhuyingxi 写道 怎么把springside的工具类都copy过来了
笑话,这样的工具类都写得差不多,就一定是springside出的吗。 |
|
返回顶楼 | |
发表时间:2010-10-25
但这个似乎连注释都和springside的一模一样....
|
|
返回顶楼 | |