当前位置: 代码迷 >> J2EE >> The method getActualTypeArguments() is undefined for the type ParameterizedType解决方案
  详细解决方案

The method getActualTypeArguments() is undefined for the type ParameterizedType解决方案

热度:26   发布时间:2016-04-22 00:39:00.0
The method getActualTypeArguments() is undefined for the type ParameterizedType
public abstract class HibernateDao<T>{
private Class<T> clazz;
protected HibernateDao() {
ParameterizedType type=(ParameterizedType)getClass().getGenericSuperclass();
clazz=(Class<T>)type.getActualTypeArguments()[0];

}
红色部分报错 为什么啊?

------解决方案--------------------
http://zhidao.baidu.com/question/168167280.html
  相关解决方案