import java.lang.reflect.Method;
import java.util.ArrayList;
public class show {
public static void main(String[] args) throws Exception, SecurityException {
ArrayList<Integer> al =new ArrayList<Integer>();
Class c =al.getClass();
Method m =c.getMethod("add",c.getClasses());
m.invoke(al,"abc");
System.out.println(al);
}
}
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) | 黑马程序员IT技术论坛 X3.2 |