public class Test {
/**
* ArrayList<Integer>的一个对象,在这个集合中添加一个字符串数据,如何实现呢?
* @throws Exception
*/
public static void main(String[] args) throws Exception {
ArrayList<Integer> list=new ArrayList<Integer>();
list.add(1);
list.add(2);
list.add(3);
Class clazz=Class.forName("java.util.ArrayList");
Method method=clazz.getMethod("add",Object.class );
method.invoke(list, "abc");
System.out.println(list);
}
}
|
|