黑马程序员技术交流社区
标题:
有个编程小问题,求解答
[打印本页]
作者:
韶山
时间:
2014-11-12 22:32
标题:
有个编程小问题,求解答
在ArrayList<Integer> list = new ArrayList<Integer>();中添加一个字符串类型的数据。
作者:
hailong
时间:
2014-11-13 13:01
需要用到反射
public static void main(String[] args) throws Exception {
ArrayList<Integer> list = new ArrayList<Integer>();
String s = "abcdefg";
Method method = list.getClass().getMethod("add",Object.class);
method.invoke(list,s);
System.out.println(list);
}
复制代码
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2