本帖最后由 武庆东 于 2012-9-13 01:56 编辑
可改为
public class Test {
public static void main(String[] args)throws Exception {
try {
//得到类中的默认无参构造方法,怎么会出错呢?原题中Person是内部类,不能直接创建对象
Person p=Person.class.getDeclaredConstructor().newInstance();
Method me=Person.class.getMethod("printName");
me.invoke(p);
}catch (Exception e){
e.printStackTrace();
}
}
}
class Person {
public void printName(){
System.out.println("lijing");
}
}
getConstructor
public Constructor<T> getConstructor(Class<?>... parameterTypes)
throws NoSuchMethodException,
SecurityException返回一个 Constructor 对象,它反映此 Class 对象所表示的类的指定公共构造方法。
getDeclaredConstructor
public Constructor<T> getDeclaredConstructor(Class<?>... parameterTypes)
throws NoSuchMethodException,
SecurityException返回一个 Constructor 对象,该对象反映此 Class 对象所表示的类或接口的指定构造方法。
|