当前位置: 代码迷 >> J2EE >> class.formName获取的种能做List的泛型类么
  详细解决方案

class.formName获取的种能做List的泛型类么

热度:7944   发布时间:2013-02-25 21:40:50.0
class.formName获取的类能做List的泛型类么?
我的javabean类名:com.BBM.bean.student
我通过传进来一个字符串类名来获得javabean类来做List的泛型
List<(Class.forName("com.BBM.bean.student").newInstance().getClass())> list =null;
但是上面的代码List报错:list cannot be resolved to a variable
这个求大神帮忙看看啊!
引用:
引用:引用:引用:Object obj = Class.forName("com.BBM.bean.student").newInstance().getClass()

obj是一个runtime class of this Obje……
你想获取哪个类就传那个类进去就可以了。
  相关解决方案