标签:style blog io color os ar java for sp
pclass = Class.forName("get_class_method.Person"); //Field ageField = pclass.getField("age");//因为age成员变量是私有的,所以会产生NoSuchFieldException异常 Field ageField = pclass.getDeclaredField("age");//获得该对象反映此 Class 对象所表示的类或接口的指定已声明字段 Object obj = pclass.newInstance(); //ageField.set(obj, 12);//因为age是私有的,所以即使获取到了,还是不能访问,如果硬要访问,就要强制设置访问权限 ageField.setAccessible(true);//对于构造函数和普通成员方法都可利用相应的setAccessible()函数进行设置! //虽然获取到了该字节码的字段,如果设置或得到该字段的具体的值,那么必须指明是哪一个对象的! ageField.set(obj, 12);//设置字段的值 System.out.println(ageField.get(obj));//获取字段的值
//普通成员函数的获取 Method method1 = pclass.getMethod("method1", null); method1.invoke(obj, null); Method method2 = pclass.getMethod("method2", String.calss, int.class); method2.invoke(obj, "小强", 20);
标签:style blog io color os ar java for sp
原文地址:http://www.cnblogs.com/hujunzheng/p/4055928.html