美文网首页技术干货程序员
设计模式——桥接模式

设计模式——桥接模式

作者: BrightLoong | 来源:发表于2018-08-12 22:51 被阅读7次

[图片

bridge.jpg
阅读原文请访问我的博客BrightLoong's Blog

一. 概述

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

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

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

二. UML类图解析

bridge.png
  • Abstraction(抽象类):定义了抽象的接口,并持有一个对Implementor(实现)的引用。
  • RefinedAbstraction:实现并扩展由抽象定义的接口。
  • Implementor(实现的抽象):实现类的抽象,给出实现类的接口。
  • ConcreteImplementor(具体的实现) :实现类具体的实现。

三. 代码实现

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

四. 总结

使用场景

  • 一个类存在两个独立变化的维度,且这两个维度都需要进行扩展。
  • 不希望使用继承或因为多层次继承导致系统类的个数急剧增加的系统 。
  • 如果一个系统需要在构件的抽象化角色和具体化角色之间增加更多的灵活性,避免在两个层次之间建立静态的继承联系,通过桥接模式可以使它们在抽象层建立一个关联关系。

优点

  • 实现了抽象部分和实现部分的分离,具有更好的扩展性。
  • 可动态的切换实现 ,就像客户端中调用那样,可以动态切换实现。
  • 实现细节对客户端透明。

缺点

  • 增加系统的理解与设计难度,由于聚合关联关系建立在抽象层,要求开发者针对抽象进行设计与编程。

相关文章

  • 设计模式-桥接模式

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

  • 桥接模式

    设计模式:桥接模式(Bridge)

  • 设计模式——桥接模式

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

  • 设计模式之桥接模式

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

  • 桥接模式

    介绍 桥接模式(Bridge Pattern) 也称为桥梁模式,是结构型设计模式之一。桥接模式的作用就是连接 "两...

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

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

  • 设计模式-桥接模式

    桥接模式介绍 桥接模式(Bridge Pattern)也称为桥梁模式,是结构型设计模式之一。顾名思义其与现实中的桥...

  • Android设计模式——桥接模式(七大结构型)

    1.桥接模式介绍 桥接模式(Bridge Pattern)也称为桥梁模式,是七大结构型设计模式之一。 2....

  • 2、桥接模式(结构型)

    第一次接触桥接模式是在刷面试题时,遇到问jdbc主要用到的设计模式是?桥接模式。 桥接模式(Bridge):将抽象...

  • Java设计模式<桥接模式>

    Java设计模式<桥接模式> 意图 桥接模式就是把事物和其具体实现分开,使他们可以各自独立的变化。桥接的用意是:将...

网友评论

    本文标题:设计模式——桥接模式

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