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

Java 动态代理详解

时间:2017-05-10 14:50:18      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:ade   nike   get   val   sys   string   oid   str   throw   

package com.at221;

//代理设计模式:

interface ClothFactory{
    void product();
}

class NikeFactory implements ClothFactory{//被代理类:

    @Override
    public void product() {
        System.out.println("Nike服装很可靠");
    }
    
}

class ProxyFactory implements ClothFactory{//代理类:

    private NikeFactory nf;
    
    public ProxyFactory(NikeFactory nf){
        this.nf = nf;
    }
    @Override
    public void product() {
        this.nf.product();
    }
    
}

public class TestProxy {
    public static void main(String[] args) {
        NikeFactory nf = new NikeFactory();
        ProxyFactory pf = new ProxyFactory(nf);
        pf.product();
    }
}

下面是利用反射机制进行实现的动态代理:

 

 

package com.at221;

import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Method;
import java.lang.reflect.Proxy;

interface Subject{
    void show();
}

class RealSubject implements Subject{

    @Override
    public void show() {
        System.out.println("zhaoning,i love you!!!");
    }
    
}

class ProxySubject implements InvocationHandler{
    Object obj;
    public Object blind(Object obj){
        this.obj = obj;
        return Proxy.newProxyInstance(obj.getClass().getClassLoader(), 
                                        obj.getClass().getInterfaces(), this);
    }

    @Override
    public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
        Object returnVal = method.invoke(obj, args);
        return returnVal;
    }

}

public class TestProxy1{
    public static void main(String[] args) {
        RealSubject rs = new RealSubject();
        ProxySubject ps = new ProxySubject();
        Subject rss = (Subject)ps.blind(rs);
        rss.show();
    }
}

 

Java 动态代理详解

标签:ade   nike   get   val   sys   string   oid   str   throw   

原文地址:http://www.cnblogs.com/zhaoningzyn/p/6835313.html

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