摘要:
一般在其他类中是不能这个得到类中private属性和访问private方法的,但天无绝人之路,java强大的反射机制可以完成这个任务。建一个测试类A:package com.shao.test; public class A { private String testStr="just for test"; private void get(int index,String value){ System.out.println(index+":"+value+" and testStr:"+testStr); }
}
现在我们来访问A 阅读全文