中文文档翻译的不全。
public Method getWriteMethod()Gets the method that should be used to write the property value.
Returns:
The method that should be used to write the property value. May return null if the property can't be written.私有了就算不存在了吧 作者: 老衲玩IT 时间: 2013-8-28 12:08
属性获取和设置必须要有公开接口给用户才行,你的setProperties()方法如果是私有的,没有公开接口,你给谁去调用?作者: yangqing 时间: 2013-8-28 13:14
可以通过暴力访问来访问私有化成员:通过pd2.getDeclaredWriteMethod();通过这个设置成可以访问。
pd2.setAccessible(true);这个设置成可调用。
这两部共同组成了暴力访问。