最近自学java看的张孝祥老师的视频
视频中讲到反射这一课时 张老师举了一个例子
Class cl=Class.forName("java.lang.String");
Constructor con=cl.getConstructor(StringBuffer.class);
然后自己练习
当写完这一行代码的时候
Constructor con=cl.getConstructor(StringBuffer.class);
eclipse 报错
The method getConstructor(Class[]) in the type Class is not applicable for the arguments (Class)
但是在原视频中 并没有报错 (张老师用的是myeclipse)
然后百度搜索问题 得知
Constructor con=cl.getConstructor(StringBuffer.class);
应该写成
Constructor con=cl.getConstructor(new Class[]{StringBuffer.class});
不明所以 接着写下面的代码
String str=(String)con.newInstance(new StringBuffer("123"));
eclipse接着报错
The method newInstance(Object[]) in the type Constructor is not applicable for the arguments (StringBuffer)
参照上面的解决方式把代码改成
String str=(String)con.newInstance(new Object[]{new StringBuffer("123")});
eclipse就编译通过了
但是当我自定义一个person类时 person类中有一个构造函数
person(String name,int age)
再用constructor.newInstance创建person对象时 却不知道该如何下手了 求解答
幕布斯6054654
HUWWW
慕工程0101907
相关分类