本帖最后由 程浩9207 于 2015-5-29 18:56 编辑
package com.itcast.cn_1;
import java.lang.reflect.Method;
import java.util.ArrayList;
public class ArrayListDemo {
public static void main (String[]args) throws Exception, Exception{
//创建对象
ArrayList<Integer>list=new ArrayList<Integer>();
//获取字节码对象
Class c=list.getClass();
//获取构造方法
Method m=c.getMethod("add",Object.class);
//添加字符串
m.invoke(list,"hello,world");
System.out.println(list);
}
} |