jdk中对invoke的定义
public Object invoke(Object obj, Object... args)
throws IllegalAccessException,
IllegalArgumentException,
InvocationTargetException
先得到某一方法 如:Method methodCharAt = String.getClass.getMethod("charAt","int.class");
然后 方法.invoke(对象,参数列表);
如method.invoke(str1,1); |