黑马程序员技术交流社区

标题: 为什么会ClassCastException [打印本页]

作者: 夏德宇    时间: 2014-1-9 12:50
标题: 为什么会ClassCastException
  1. //使用泛型定义两个集合对象
  2. List<Integer> List1 = new ArrayList<Integer>();
  3. List<String> List2 = new ArrayList<String>();
  4. //比较class文件是否同一份
  5. System.out.println(List1.getClass() == List2.getClass());//true

  6. Method method1 = List1.getClass().getMethod("add", Object.class);
  7. Method method2 = List2.getClass().getMethod("add", Object.class);

  8. //可以利用反射跳过编译器 在集合中加入泛型指定以外的类型
  9. method1.invoke(List1, "asd");
  10. System.out.println(List1.get(0));//正常打印出asd

  11. method2.invoke(List2, 99);
  12. System.out.println(List2.get(0));//ClassCastException
  13. //如果要说List2取出来的实际类型Integer不能转成String,所以会ClassCastException,那上面List1为什么会正常打印呢?
  14. //System.out.println((Object)List2.get(0));//为什么这样就对了?
复制代码

作者: Clare0621    时间: 2014-1-21 00:25
参看此帖:http://bbs.itheima.com/thread-104405-1-1.html




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