美文网首页
桥接模式

桥接模式

作者: 码上述Andy | 来源:发表于2019-07-08 22:59 被阅读0次

1.概念

桥接模式是抽象与实现分离,做到修改互不影响。

2.UML结构图

image.png

3.代码实现

实现类接口

/**
 * Created by ZW on 2019/7/8 22:33
 */
public interface Car {
    void buildCar();
}

具体接口实现类

/**
 * Created by ZW on 2019/7/8 22:34
 */
public class Truck implements Car{
    @Override
    public void buildCar() {
        Logger.getLogger("Truck").info("the car is truck");
    }
}
/**
 * Created by ZW on 2019/7/8 22:34
 */
public class Bus implements Car{
    @Override
    public void buildCar() {
        Logger.getLogger("Truck").info("the car is bus");
    }
}

抽象类

/**
 * Created by ZW on 2019/7/8 22:35
 */
public abstract class AbstractionCar {
    private Car mCar;

    public abstract void buildCar();

    public void setCar(Car car) {
        mCar = car;
    }

    public Car getCarIns(){
        return mCar;
    }
}

扩展抽象类

/**
 * Created by ZW on 2019/7/8 22:46
 */
public class RefinedAbstactionCar extends AbstractionCar{
    @Override
    public void buildCar() {
        getCarIns().buildCar();
    }
}

具体调用

/**
 * Created by ZW on 2019/7/8 22:37
 */
public class BridgeClient  {
    public void runCar(){
        AbstractionCar abstractionCar = new RefinedAbstactionCar();

        abstractionCar.setCar(new Bus());
        abstractionCar.buildCar();

        abstractionCar.setCar(new Truck());
        abstractionCar.buildCar();
    }
}

相关文章

  • 设计模式-桥接模式

    设计模式-桥接模式 定义 桥接模式(Bridge Pattern)也称为桥梁模式、接口(Interface)模式或...

  • 结构型模式:桥接模式

    文章首发:结构型模式:桥接模式 七大结构型模式之二:桥接模式。 简介 姓名 :桥接模式 英文名 :Bridge P...

  • 设计模式之桥接模式

    设计模式之桥接模式 1. 模式定义 桥接模式又称柄体模式或接口模式,它是一种结构性模式。桥接模式将抽象部分与实现部...

  • 06-01-001 虚拟机的网络连接方式(转运整理)

    一、Bridged(桥接模式) 什么是桥接模式?桥接模式就是将主机网卡与虚拟机虚拟的网卡利用虚拟网桥进行通信。在桥...

  • 桥接模式与中介模式

    桥接模式-BRIDGE 对桥接模式感兴趣,是因为公司业务上需要桥接Html5和ReactNative两个平台。桥接...

  • 设计模式——桥接模式

    设计模式——桥接模式 最近公司组件分享设计模式,然而分配给我的是桥接模式。就在这里记录我对桥接模式的理解吧。 定义...

  • 桥接模式

    个人博客http://www.milovetingting.cn 桥接模式 模式介绍 桥接模式也称为桥梁模式,是结...

  • 桥接模式

    桥接模式 参考原文: https://zhuanlan.zhihu.com/p/62390221 定义 桥接模式 ...

  • 10-桥接模式

    桥接模式-Bridge Pattern【学习难度:★★★☆☆,使用频率:★★★☆☆】 处理多维度变化——桥接模式(...

  • Java设计模式——桥接模式

    Java设计模式之桥接模式 回顾 上一期分享了适配器模式,主要为了实现解耦 桥接模式 简介 桥接模式是对象的结构模...

网友评论

      本文标题:桥接模式

      本文链接:https://www.haomeiwen.com/subject/jcaohctx.html