黑马程序员技术交流社区

标题: 在这个泛型为Integer的ArrayList中存放一个String类型的对象 [打印本页]

作者: cxl1694095035    时间: 2016-5-15 21:50
标题: 在这个泛型为Integer的ArrayList中存放一个String类型的对象
/*
         * ArrayList<Integer> list = new ArrayList<Integer>();
         *  在这个泛型为Integer的ArrayList中存放一个String类型的对象。
         */
public class Test2 {

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





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