本帖最后由 821728010 于 2013-6-5 20:15 编辑
这段代码运行时为什么会报错?
import java.lang.reflect.Constructor;
public class Bzsrsc {
public static void main(String[] args)throws Exception {
// A a = A.class.newInstance();
// System.out.println(a.i);
Constructor con = A.class.getConstructor();
A a = (A)con.newInstance();
System.out.println(a.i);
}
}
class A{
int i = 1;
}
|