如何从 Java 中类的外部访问类在内部私有方法?
您可使用 java 反射包访问类的私有方法。
步骤 1 − 通过传递被声明为私有方法的方法名称,实例化Method 类的java.lang.reflect包。
步骤 2 − 通过将值true 传递到setAccessible()方法,设置方法可访问。
步骤 3 − 最后,使用invoke()方法调用该方法。
示例
import java.lang.reflect.Method; public class DemoTest { private void sampleMethod() { System.out.println("hello"); } } public class SampleTest { public static void main(String args[]) throws Exception { Class c = Class.forName("DemoTest"); Object obj = c.newInstance(); Method method = c.getDeclaredMethod("sampleMethod", null); method.setAccessible(true); method.invoke(obj, null); } }
广告