黑马程序员技术交流社区

标题: 反射技术 [打印本页]

作者: YRDHelloworld    时间: 2015-6-21 21:26
标题: 反射技术
public class ArrayListDemo {

        /*有一个ArrayList<Integer> list=new ArrayList<Integer>();
    将一个String类型的字符串放进集合中*/

        public static void main(String[] args)throws Exception {
      
                ArrayList<Integer> list=new ArrayList<Integer>();       
                Method method=list.getClass().getMethod("add",Object.class);
                method.invoke(list,"my name is ");
                System.out.println(list.toString());

        }
在getMethod("add",Object.class);这个地方为什么用String.class不行啊  ,不是存入的是String类型的字符串么       求大神解答





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