黑马程序员技术交流社区
标题:
代理小问题
[打印本页]
作者:
龚振 龚振 龚振
时间:
2012-4-25 18:57
标题:
代理小问题
为什么红色部分不是Proxy?谁能解释下原理和作用么,不太明白,虽然我知道这么写
Class clazzProxy1 =Proxy.getProxyClass(Collection.class.getClassLoader(), Collection.class);
Constructor constructor = clazzProxy1.getConstructor(InvocationHandler.class);
Collection
proxy2 =
(
Collection)
constructor.newInstance(new InvocationHandler(){
@Override
public Object invoke(Object proxy, Method method, Object[] args)
throws Throwable {
// TODO Auto-generated method stub
return null;
}
});
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2