探索反射的开发者经常会遇到需要访问私有方法的场景。虽然 Java 通过传统的反射机制限制对这些方法的直接访问,但它通过基于反射的方法提供了一种解决方法。
解决方案:
使用反射调用私有方法,修改提供的代码片段如下:
Element node = outerNode.item(0); String methodName = node.getAttribute("method"); String objectName = node.getAttribute("object"); if ("SomeObject".equals(objectName)) object = someObject; else object = this; // Use getDeclaredMethod to include both private and inherited methods Method method = object.getClass().getDeclaredMethod(methodName); // Enable access to the private method using setAccessible method.setAccessible(true); // Invoke the method and store the result Object r = method.invoke(object);
注意事项:
替代方法:
如果修改方法的可访问性或实现 PrivilegedAction(如建议的)提供的答案)不可行,请考虑以下替代方案:
以上是如何使用Java反射调用私有方法?的详细内容。更多信息请关注PHP中文网其他相关文章!