反射可以结合Java的字节码,使用ASM和cglib等库,还能动态生成类。作者: 吴光新 时间: 2013-9-3 14:54
框架就要用到反射,动态代理、类加载器...哪里不用到反射?意义很大哦 亲作者: 静以修身 时间: 2013-9-5 15:02
想到了之前做的一道编程题,这道题要用反射才能解决:
ArrayList<Integer> list = new ArrayList<Integer>(); 在这个泛型为Integer的ArrayList中存放一个String类型的对象
public class Test3 {
public static void main(String[] args)
{
ArrayList<Integer> list = new ArrayList<Integer>();
Method method = null;
method = list.getClass().getMethod("add",Object.class); //通过反射,获得指定的方法add()
String str = "I am a string type";
method.invoke(list,str);//调用方法对象的invoke方法运行指定方法方法add(),参数中的list为所属的对象,str为方法的实际参数。
}
}