黑马程序员技术交流社区

标题: 什么不可以通过反射在ArrayList<String> list中存入Integer类型的对象 [打印本页]

作者: win_rainbow    时间: 2015-8-3 11:06
标题: 什么不可以通过反射在ArrayList<String> list中存入Integer类型的对象

通过反射可以在ArrayList<Integer> list中存入String类型对象,为什么不可以再ArrayList<String> list中存入Integer类型的对象呢?
  1. package com.itheima;

  2. import java.io.FileInputStream;
  3. import java.io.FileNotFoundException;
  4. import java.io.IOException;
  5. import java.lang.reflect.Field;
  6. import java.lang.reflect.InvocationTargetException;
  7. import java.lang.reflect.Method;
  8. import java.util.ArrayList;
  9. import java.util.Iterator;
  10. import java.util.List;
  11. import java.util.Properties;
  12. import java.util.Set;

  13. public class Test5{
  14.        
  15.         public static void main(String []args) throws IOException, ClassNotFoundException, NoSuchMethodException, SecurityException, IllegalAccessException, IllegalArgumentException, InvocationTargetException, Exception{
  16.                
  17.                
  18.                 List<String> list = new ArrayList<String>();
  19.                 list.add("a");
  20.                 list.add("b");
  21.                 Class<?> cls = list.getClass();
  22.                 Method m =cls.getMethod("add", Object.class);
  23.                 m.setAccessible(true);
  24.                 m.invoke(list, new Integer(1));
  25.                 System.out.println(list.get(2));
  26.                
  27.                
  28.                
  29.                
  30.                
  31.                
  32.                
  33.         }
  34.        
  35.        
  36. }
复制代码



错误提示如下:Exception in thread "main" java.lang.ClassCastException: java.lang.Integer cannot be cast to java.lang.String
作者: g552092947    时间: 2015-8-3 15:12
当你输出的时候list.get(2)使用的是你自己定义String类型的get方法。如果你想得到你反射加进去的数据应该也得用反射的方法得到
  1. Method m1 =cls.getMethod("get", int.class);
  2.                 Integer a=(Integer)m1.invoke(list, 2);
  3.                 System.out.println(a);
复制代码





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