黑马程序员技术交流社区

标题: 有个编程小问题,求解答 [打印本页]

作者: 韶山    时间: 2014-11-12 22:32
标题: 有个编程小问题,求解答
在ArrayList<Integer> list = new ArrayList<Integer>();中添加一个字符串类型的数据。
作者: hailong    时间: 2014-11-13 13:01
需要用到反射
  1. public static void main(String[] args) throws Exception {
  2.                 ArrayList<Integer> list = new ArrayList<Integer>();
  3.                 String s = "abcdefg";
  4.                 Method method = list.getClass().getMethod("add",Object.class);
  5.                 method.invoke(list,s);
  6.                 System.out.println(list);
  7.         }
复制代码








欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2