码迷,mamicode.com
首页 > 编程语言 > 详细

java动态代理

时间:2017-05-14 22:51:37      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:handler   throw   动态代理   method   bin   return   cat   nts   ade   

动态代理

public class MyInvocationHandler implements InvocationHandler {
 private Object object=null;
 public Object bind(Object obj){
  object=obj;
  return Proxy.newProxyInstance(obj.getClass().getClassLoader(), obj.getClass().getInterfaces(), this);
 }
 public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
  Object temp=method.invoke(this.object, args);
  return temp;
 }

}

通过bind方法绑定代理类

 MyInvocationHandler handler=new MyInvocationHandler();
        Subject subject=(Subject)handler.bind(new RealSubject());

 

java动态代理

标签:handler   throw   动态代理   method   bin   return   cat   nts   ade   

原文地址:http://www.cnblogs.com/cindy-zhu/p/6854209.html

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