动态代理-JDK 源码剖析(一):简单示例

来源:互联网 发布:手机模拟笛子软件 编辑:程序博客网 时间:2024/06/05 02:51
 

首先,我们实现一个简单的动态代理的例子:

publicinterfaceytInterface {
   
void method1(String arg);
}

具体实现类为:

publicclassytInterfaceImplimplementsytInterface {
   
public void method1(String arg) {
        System.
out.println("ytInterfaceImpl:arg="+ arg);
   
}
}

动态代理类为:

publicclassytInvocationHandlerimplementsInvocationHandler {
   
private Objectobj= null;

    public
Object invoke(Object proxy,Method method,Object[] args) throwsThrowable {
       
return method.invoke(this.obj,args);
   
}

   
public ObjectgetNewInstance(Object obj) {
       
this.obj= obj;
        return
Proxy.newProxyInstance(obj.getClass().getClassLoader(),obj.getClass().getInterfaces(), this);
   
}
}

具体调用类为:

publicclassMainTest {
   
public static void main(String[] args)throws Throwable{
        ytInvocationHandler demo =
new ytInvocationHandler();
       
ytInterface impl = (ytInterface)demo.getNewInstance(newytInterfaceImpl());
       
String arg = "hello";
       
impl.method1(arg);
   
}
}

调用结果为:



下一章节,我们将分析JDK动态代理源码机制机理。【更新时间为:2017-10-01】

原创粉丝点击