本帖最后由 夏德宇 于 2014-1-9 13:11 编辑
- //使用泛型定义两个集合对象
- List<Integer> List1 = new ArrayList<Integer>();
- List<String> List2 = new ArrayList<String>();
- //比较class文件是否同一份
- System.out.println(List1.getClass() == List2.getClass());//true
-
- Method method1 = List1.getClass().getMethod("add", Object.class);
- Method method2 = List2.getClass().getMethod("add", Object.class);
-
- //可以利用反射跳过编译器 在集合中加入泛型指定以外的类型
- method1.invoke(List1, "asd");
- System.out.println(List1.get(0));//正常打印出asd
-
- method2.invoke(List2, 99);
- System.out.println(List2.get(0));//ClassCastException
- //如果要说List2取出来的实际类型Integer不能转成String,所以会ClassCastException,那上面List1为什么会正常打印呢?
- // System.out.println((Object)List2.get(0));//为什么这样就对了?
复制代码 |