本帖最后由 酋长第一 于 2014-8-31 21:29 编辑
写一个ArrayList的代理,实现ArrayList所有功能并测试时间的代码中
List< Integer> arrayListProxy = (List< Integer>)Proxy.newProxyInstance(
/*定义代理类的类加载器,用于创建代理对象,不一定必须是ArrayList,也可以是其他的类加载器*/
ArrayList.class.getClassLoader(),
ArrayList.class.getInterfaces(), /*代理类要实现的接口列表*/
new InvocationHandler()
初学代理好多部懂
第一行的Proxy.newProxyInstance总是报错,找不出原因
大神们帮个忙小弟在此谢过了 |