本帖最后由 zhanghua 于 2011-11-21 13:57 编辑
正在学反射 ,敲了个例子却报错了,为什么
public class Test {
public static void main(String[] args) throws Exception {
Class<?> clazz = Class.forName("Person");
clazz.getField("name");
}
}
class Person {
private String name;
}
Exception in thread "main" java.lang.NoSuchFieldException: name
明明有name属性的,怎么抛这个异常 |