A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 夏德宇 中级黑马   /  2014-1-9 12:48  /  666 人查看  /  0 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

本帖最后由 夏德宇 于 2014-1-9 13:11 编辑
  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.                         
  7.                         Method method1 = List1.getClass().getMethod("add", Object.class);
  8.                         Method method2 = List2.getClass().getMethod("add", Object.class);
  9.                         
  10.                         //可以利用反射跳过编译器 在集合中加入泛型指定以外的类型
  11.                         method1.invoke(List1, "asd");
  12.                         System.out.println(List1.get(0));//正常打印出asd
  13.                         
  14.                         method2.invoke(List2, 99);
  15.                         System.out.println(List2.get(0));//ClassCastException
  16.                         //如果要说List2取出来的实际类型Integer不能转成String,所以会ClassCastException,那上面List1为什么会正常打印呢?
  17. //                        System.out.println((Object)List2.get(0));//为什么这样就对了?
复制代码

评分

参与人数 1技术分 +1 收起 理由
田磊阳 + 1

查看全部评分

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马