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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

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

  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));//为什么这样就对了?
复制代码

评分

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

查看全部评分

1 个回复

倒序浏览
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马