黑马程序员技术交流社区

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

作者: 王训印    时间: 2015-8-7 10:15
标题: 在这个泛型为Integer的ArrayList中存放一个String类型的对象
  1. package com.wxy001;

  2. import java.lang.reflect.InvocationTargetException;
  3. import java.lang.reflect.Method;
  4. import java.util.ArrayList;

  5. public class RefelectTest7
  6. {
  7.         public static void main(String[] args) throws Exception
  8.         {
  9.                 ArrayList<Integer> list  = new ArrayList<Integer>(); //定义Integer泛型
  10.                 String str  ="abc";
  11.                 Class<?> cl = list.getClass();
  12.                 Method[] method = cl.getMethods();//取得list的所有方法
  13.                 method[0].invoke(list, str);//通过反射来执行list的第一个方法(void add(Object obj)),第一个是list对象,代表该对象的方法,第二个是方法参数
  14.                 System.out.println(list);
  15.                
  16.         }
  17. }
复制代码





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