黑马程序员技术交流社区

标题: 求解答,求大神支招 [打印本页]

作者: 明天你好,微笑    时间: 2015-8-24 21:49
标题: 求解答,求大神支招
ArrayList<Integer> list = new ArrayList<Integer>();在这个泛型为Integer的ArrayList中存放一个String类型的对象。
作者: 明天你好,微笑    时间: 2015-8-24 21:50
求解答,求大神支招
作者: lion_good    时间: 2015-8-25 00:02

  1. public void test() throws Exception {
  2.     ArrayList<Integer> list = new ArrayList<Integer>();
  3.     Method add = list.getClass().getMethod("add", Object.class);
  4.     add.invoke(list, "good");
  5.     for (Object o : list) {
  6.         System.out.println(o);
  7.     }
  8. }
复制代码





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