JDK1.8里Method.invoke()的实现原理
Method.invoke()用途广泛例子import java.lang.reflect.Method;public class MethodTest { public static void main(String[] args) throws Exception { Class<?> clz = Class.forName("com.method.TestClassLoad"); Object o = clz