写了一个ArrayList的动态代理proxy 可是这个对象只能调用Collection中的方法 ArrayList中的有些方法却不能调用 应该怎么解决呢? 问题已经在代码中标明
public class ProxyTest {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
final ArrayList target = new ArrayList();
Collection proxy = (Collection) getProxy(target);//proxy是ArrayList的代理
//测试代理
//((ArrayList)proxy).ensureCapacity(20);//这里会报错,为什么?注释掉这一行就可以运行正常
//proxy.ensureCapacity(20);//这样也报错,为什么?要怎么样才能调用ArrayList所有的方法
proxy.add(1);
proxy.add(2);
proxy.add(3);
System.out.println(proxy.size());
System.out.println(proxy.getClass().getName());
}
public static Object getProxy(final Object target) {
Object proxy = Proxy.newProxyInstance(
target.getClass().getClassLoader(),
target.getClass().getInterfaces(),
new InvocationHandler() {
@Override
public Object invoke(Object proxy, Method method, Object[] args)
throws Throwable {
long beginTime = System.currentTimeMillis();//附加功能
Object reValue = method.invoke(target, args);//调用目标的方法
long endTime = System.currentTimeMillis();//附加功能
//计算方法运行的时间
System.out.println(method.getName() + "'s ran time is " + (endTime-beginTime));
return reValue;
}
});
return proxy;
}
}
哪位能帮我看下,谢谢 |