码迷,mamicode.com
首页 > 其他好文 > 详细

JDK动态代理

时间:2018-08-12 14:20:03      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:ace   throwable   throw   nts   oca   ati   this   load   his   

Class Proxy implements InvocationHandler{
Object tar =null;
public Object bid(Object tar){
this.tar=tar;
return Proxy.newProxyInstance(tar.getClass().getClassLoader(),tar.getClass.getInterfaces,this);
}
//重写Invoke 方法
public Object invoke(Object proxy,Method method,Object[] args) throws throwable{
Object result=null;
result=method.invoke(tar,args);
return result;
}

}

JDK动态代理

标签:ace   throwable   throw   nts   oca   ati   this   load   his   

原文地址:http://blog.51cto.com/13919712/2158313

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!