Java反射中的invoke方法用于调用指定对象的方法。它的使用方式如下:
- 获取Class对象:首先需要获取到要调用方法的对象的Class对象,可以使用
Class.forName()
方法或者直接使用对象的getClass()
方法。
Class> clazz = Class.forName("com.example.MyClass");
- 获取Method对象:接下来需要获取要调用的方法的Method对象,可以使用
getMethod()
方法或者getDeclaredMethod()
方法,前者用于获取公共方法,后者用于获取所有方法(包括私有方法)。
Method method = clazz.getMethod("myMethod", String.class, int.class);
- 调用方法:最后使用
invoke()
方法调用方法,传递实例对象以及方法的参数。
Object result = method.invoke(instance, "Hello", 123);
完整示例代码如下:
import java.lang.reflect.Method; public class MyClass { public void myMethod(String str, int num) { System.out.println("String: " + str + ", int: " + num); } public static void main(String[] args) throws Exception { Class> clazz = Class.forName("com.example.MyClass"); MyClass instance = (MyClass) clazz.getDeclaredConstructor().newInstance(); Method method = clazz.getMethod("myMethod", String.class, int.class); method.invoke(instance, "Hello", 123); } }
这样就可以使用反射调用指定对象的方法了。注意,使用反射调用方法时需要处理异常,因为反射调用可能会抛出IllegalAccessException
、IllegalArgumentException
和InvocationTargetException
等异常。