欧美日操-欧美日韩91-欧美日韩99-欧美日韩ay在线观看-xxxx色-xxxx视频在线

設(shè)計(jì)模式 — 動(dòng)態(tài)代理模式

2018-03-14 14:24:01 csdn  點(diǎn)擊量: 評(píng)論 (0)
動(dòng)態(tài)代理動(dòng)態(tài)代理0 簡(jiǎn)介1 類圖2 示例3 源碼分析0 簡(jiǎn)介代理模式有兩種形式:靜態(tài)代理、動(dòng)態(tài)代理。1 類圖圖片來源網(wǎng)絡(luò)2 示例使

動(dòng)態(tài)代理

 

 

 

0. 簡(jiǎn)介

 

代理模式有兩種形式:靜態(tài)代理、動(dòng)態(tài)代理。

1. 類圖

 

圖片來源網(wǎng)絡(luò) 
這里寫圖片描述

2. 示例

 

使用JDK中的Proxy類實(shí)現(xiàn)動(dòng)態(tài)代理類的創(chuàng)建;

Proxy.newProxyInstance(ClassLoader loader, Class<?>[] interfaces, InvocationHandler handler);
  • 1

一般的用法:

public void proxy() throws Exception {
    PlayProxy handler= new PlayProxy();
    IPlay  proxy= (IPlay) Proxy.newProxyInstance(IPlay.class.getClassLoader(), new Class[]{IPlay.class}, handler);
    // 這個(gè)方法返回值為null,這是由invoke()方法返回的。
    proxy.play("籃球");
}

interface IPlay {
    void play(String name);
}

class PlayProxy implements InvocationHandler {

    // 當(dāng)IPlay.play()被調(diào)用時(shí),invoke()也會(huì)被調(diào)用。
    @Override
    public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
        System.out.println("method=" + method + " , args=" + args[0]);
        // 在此處直接添加處理邏輯。
        return null;
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21

輸出結(jié)果:

method=public abstract void com.example.demo.IPlay.play(java.lang.String) , args=籃球


由上面可以看出,雖然動(dòng)態(tài)代理生成了接口的代理對(duì)象,但是代理類中沒有實(shí)際的處理邏輯,而接口的方法也是沒有實(shí)際處理邏輯的,所以要添加處理邏輯,只能在PlayProxy.invoke()中添加,這就增加了代碼的耦合性。

注意: 跟靜態(tài)代理相比,動(dòng)態(tài)代理要少寫一個(gè)代理類,因?yàn)樵摯眍惪梢酝ㄟ^Proxy.newProxyInstance() 方法獲得。 
這里涉及到三個(gè)類: 
1. IPlay 
2. StudentPlay 
3. PlayProxy

public void proxy() throws Exception {
    StudentPlay student = new StudentPlay();
    PlayProxy handler= new PlayProxy(student);
    IPlay proxy= (IPlay) Proxy.newProxyInstance(IPlay.class.getClassLoader(), new Class[]{IPlay.class}, handler);
    proxy.play("籃球");//代理類執(zhí)行play()方法
}

interface IPlay {
    void play(String name);
}

class StudentPlay implements IPlay {
    @Override
    public void play(String name) {
        System.out.println("StudentPlay.play(),name=" + name);
    }
}

class PlayProxy<T> implements InvocationHandler {
    // 實(shí)際的執(zhí)行對(duì)象
    T target;
    public PlayProxy(T target) {
        this.target = target;
    }

    @Override
    public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
        System.out.println("method=" + method + " , args=" + args[0]);
        // 這里實(shí)際調(diào)用的是target對(duì)象中對(duì)應(yīng)的方法,即StudentPlay.play("籃球");
        Object result = method.invoke(target, args);
        return result;
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33

輸出結(jié)果:

method=public abstract void com.example.demo.IPlay.play(java.lang.String) , args=籃球 
StudentPlay.play(),name=籃球

3. 源碼分析

 

源碼基于JDK1.8

// java.lang.reflect.Proxy
public class Proxy implements java.io.Serializable {
    /** parameter types of a proxy class constructor */
    private static final Class<?>[] constructorParams = { InvocationHandler.class };

    public static Object newProxyInstance(ClassLoader loader,
                                          Class<?>[] interfaces,
                                          InvocationHandler h) throws IllegalArgumentException {
        Objects.requireNonNull(h);

        final Class<?>[] intfs = interfaces.clone();
        final SecurityManager sm = System.getSecurityManager();
        if (sm != null) {
            checkProxyAccess(Reflection.getCallerClass(), loader, intfs);
        }

        // 1.獲取一個(gè)對(duì)interfaces包裝后的代理class
        Class<?> cl = getProxyClass0(loader, intfs);

        /*
         * Invoke its constructor with the designated invocation handler.
         */
        try {
            if (sm != null) {
                checkNewProxyPermission(Reflection.getCallerClass(), cl);
            }
            // 2.將InvocationHandler.class作為代理class的構(gòu)造參數(shù)
            final Constructor<?> cons = cl.getConstructor(constructorParams);
            final InvocationHandler ih = h;
            if (!Modifier.isPublic(cl.getModifiers())) {
                AccessController.doPrivileged(new PrivilegedAction<Void>() {
                    public Void run() {
                        cons.setAccessible(true);
                        return null;
                    }
                });
            }
            // 3.通過構(gòu)造器創(chuàng)建代理class的實(shí)例對(duì)象Proxy,該P(yáng)roxy對(duì)象內(nèi)持有一個(gè)InvocationHandler實(shí)例。
            return cons.newInstance(new Object[]{h});
        } catch (Exception e) {
            // ...代碼省略...
        }
    }
}
大云網(wǎng)官方微信售電那點(diǎn)事兒

責(zé)任編輯:售電衡衡

免責(zé)聲明:本文僅代表作者個(gè)人觀點(diǎn),與本站無關(guān)。其原創(chuàng)性以及文中陳述文字和內(nèi)容未經(jīng)本站證實(shí),對(duì)本文以及其中全部或者部分內(nèi)容、文字的真實(shí)性、完整性、及時(shí)性本站不作任何保證或承諾,請(qǐng)讀者僅作參考,并請(qǐng)自行核實(shí)相關(guān)內(nèi)容。
我要收藏
個(gè)贊
?
主站蜘蛛池模板: 日本久久中文字幕 | 91精品国产福利尤物免费 | 禁游app软件下载免费网站 | 国产一区二区免费在线 | 一区二区视频免费观看 | 一级特黄aaa大片在 一级特黄aaa大片免费看 | 欧美三区在线 | 国产网站在线免费观看 | 国产区精品视频 | 热er99久久6国产精品免费 | 狠狠色丁香久久综合婷婷 | 91精品啪在线观看国产91九色 | 日韩精品一区二区在线观看 | 日日爱网 | 上游电视剧在线观看免费影视大全 | 欧美视频在线不卡 | 丁香七月婷婷 | 91视频欧美| 欧洲三级在线观看 | 免费观看亚洲视频 | 欧美日韩一区二区三区视频 | 亚洲不卡在线视频 | 免费福利片 | 日本高清视频网站 | 日韩精品视频福利资源站 | 99精品视频免费在线观看 | 久久精品国产免费看久久精品 | 伊人婷婷在线 | 日韩三级不卡 | 久久亚洲日本不卡一区二区 | 国产成人精品福利网站人 | 色视频在线免费 | 天天噜噜日日噜噜久久综合网 | 日本高清不卡在线 | 国产极品白嫩超清在线观看 | 国农村精品国产自线拍 | 午夜无码国产理论在线 | 国产麻豆精品高清在线播放 | 四虎永久免费网站免费观看 | 欧美一级级a在线观看 | 欧美在线一区二区三区欧美 |