第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定

設(shè)計(jì)模式——橋接模式

標(biāo)簽:
JavaScript

[图片

webp

bridge.jpg


阅读原文请访问我的博客


一. 概述

桥接模式(Bridge ),将抽象部分与它的实现部分分离,使它们都可以独立变化;桥接是用于把抽象化与实现化解耦,使得二者可以独立变化。

如何理解“将抽象部分与它的实现部分分离”这句话呢,抽象部分和实现部分不是我们通常认为的父类和子类,接口和实现类的关系,而是组合关系,就是说实现部分是被抽象部分调用,用来完成实现抽象部分的功能。

桥接模式是结构型设计模式

二.  UML类图解析

webp

bridge.png

三. 代码实现

Implementor——实现抽象

package io.github.brightloong.design.bridge;/**
 * 实现的抽象
 * Created by BrightLoong on 2018/8/12.
 */public interface Implementor {    void operationImpl();
}

ConcreteImplementorA——具体实现

package io.github.brightloong.design.bridge;/**
 * 具体实现A
 * Created by BrightLoong on 2018/8/12.
 */public class ConcreteImplementorA implements Implementor {    public void operationImpl() {
        System.out.println("ConcreteImplementorA");
    }
}

ConcreteImplementorB——具体实现

package io.github.brightloong.design.bridge;/**
 * 具体实现B
 * Created by BrightLoong on 2018/8/12.
 */public class ConcreteImplementorB implements Implementor {    public void operationImpl() {
        System.out.println("ConcreteImplementorB");
    }
}

Abstraction——抽象定义

package io.github.brightloong.design.bridge;/**
 * 抽象定义
 * Created by BrightLoong on 2018/8/12.
 */public abstract class Abstraction  {    /**持有对实现的引用*/
    private Implementor Implementorementor;    /**
     * 抽象方法
     */
    abstract void operation();    public Implementor getImplementorementor() {        return Implementorementor;
    }    public void setImplementorementor(Implementor implementorementor) {
        Implementorementor = implementorementor;
    }
}

RefinedAbstraction——抽象扩展子类

package io.github.brightloong.design.bridge;/**
 * Created by BrightLoong on 2018/8/12.
 */public class RefinedAbstraction extends Abstraction {    @Override
    void operation() {
        getImplementorementor().operationImpl();
    }
}

客户端调用和输出

package io.github.brightloong.design.bridge;/**
 * Created by BrightLoong on 2018/8/12.
 */public class Client {    public static void main(String[] args) {
        Implementor implementorA = new ConcreteImplementorA();
        Abstraction abstraction = new RefinedAbstraction();
        abstraction.setImplementorementor(implementorA);
        abstraction.operation();

        Implementor implementorB = new ConcreteImplementorB();
        abstraction.setImplementorementor(implementorB);
        abstraction.operation();
    }
}

输出结果如下:

ConcreteImplementorA
ConcreteImplementorB

四. 总结

使用场景

优点

缺点



作者:BrightLoong
链接:https://www.jianshu.com/p/d498820a7af4


點(diǎn)擊查看更多內(nèi)容
TA 點(diǎn)贊

若覺得本文不錯(cuò),就分享一下吧!

評(píng)論

作者其他優(yōu)質(zhì)文章

正在加載中
  • 推薦
  • 評(píng)論
  • 收藏
  • 共同學(xué)習(xí),寫下你的評(píng)論
感謝您的支持,我會(huì)繼續(xù)努力的~
掃碼打賞,你說多少就多少
贊賞金額會(huì)直接到老師賬戶
支付方式
打開微信掃一掃,即可進(jìn)行掃碼打賞哦
今天注冊(cè)有機(jī)會(huì)得

100積分直接送

付費(fèi)專欄免費(fèi)學(xué)

大額優(yōu)惠券免費(fèi)領(lǐng)

立即參與 放棄機(jī)會(huì)
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)

舉報(bào)

0/150
提交
取消