桥接模式

作者: 架构师的一小步 | 来源:发表于2019-03-23 15:13 被阅读0次

桥接模式定义

  • 将抽象和实现部分分离,使他们都可以独立的进行变化

桥接模式解决问题

  • 类层级爆炸问题,降低代码复杂度

桥接模式使用场景

  • 场景一:开发中面向类层级复杂(爆炸)
  • 场景二:对不同的API之间进行桥接
  • 场景三:一个类存在两个独立的维度,且这两个维度都需要扩张(至少是两个维度)

桥接模式角色划分

\color{red}{四个核心角色}

  • 抽象部分
  • 具体抽象部分(优化的抽象部分)
  • 抽象实现部分(需要持有抽象部分的引用)
  • 实现部分具体功能

桥接模式原理案例

喝咖啡?
型号:大、中、小杯
配料:加冰、不加冰、加糖、不加糖

  • 抽象部分
//
//  CoffeeAddtives.swift
//  Dream_20180723_Bridge
//
//  Created by Dream on 2018/7/23.
//  Copyright © 2018年 Tz. All rights reserved.
//

import UIKit

//抽象部分:咖啡添加剂
class CoffeeAddtives: NSObject {

    //业务逻辑
    func addtives() -> String {
        return ""
    }
    
}

  • 具体抽象部分(优化的抽象部分)
//
//  IceAddtives.swift
//  Dream_20180723_Bridge
//
//  Created by Dream on 2018/7/23.
//  Copyright © 2018年 Tz. All rights reserved.
//

import UIKit

//加冰
class IceAddtives: CoffeeAddtives {

    override func addtives() -> String {
        return "加冰"
    }
    
}

//
//  NonIceAddtives.swift
//  Dream_20180723_Bridge
//
//  Created by Dream on 2018/7/23.
//  Copyright © 2018年 Tz. All rights reserved.
//

import UIKit

//不加冰
class NonIceAddtives: CoffeeAddtives {

    override func addtives() -> String {
        return "不加冰"
    }
    
}

//
//  SugarAddtives.swift
//  Dream_20180723_Bridge
//
//  Created by Dream on 2018/7/23.
//  Copyright © 2018年 Tz. All rights reserved.
//

import UIKit

//加糖
class SugarAddtives: CoffeeAddtives {

    override func addtives() -> String {
        return "加糖"
    }
    
}

//
//  NonSugarAddtives.swift
//  Dream_20180723_Bridge
//
//  Created by Dream on 2018/7/23.
//  Copyright © 2018年 Tz. All rights reserved.
//

import UIKit

//不加糖
class NonSugarAddtives: CoffeeAddtives {

    override func addtives() -> String {
        return "不加糖"
    }
    
}

  • 抽象实现部分
//
//  Coffee.swift
//  Dream_20180723_Bridge
//
//  Created by Dream on 2018/7/23.
//  Copyright © 2018年 Tz. All rights reserved.
//

import UIKit

//抽象实现部分:型号
class Coffee: NSObject {
    //第一个维度
    var addtives:CoffeeAddtives
    //第二个维度
    //第三个维度
    
    init(addtives:CoffeeAddtives) {
        self.addtives = addtives
    }
    
    func makeCoffee() {
        
    }
    
}

  • 实现部分具体功能
//
//  BigCoffee.swift
//  Dream_20180723_Bridge
//
//  Created by Dream on 2018/7/23.
//  Copyright © 2018年 Tz. All rights reserved.
//

import UIKit

class BigCoffee: Coffee {

    override func makeCoffee() {
        print("大杯\(addtives.addtives())的咖啡")
    }
    
}

//
//  MediumCoffee.swift
//  Dream_20180723_Bridge
//
//  Created by Dream on 2018/7/23.
//  Copyright © 2018年 Tz. All rights reserved.
//

import UIKit

class MediumCoffee: Coffee {

    override func makeCoffee() {
        print("中杯\(addtives.addtives())的咖啡")
    }
    
}

//
//  SmallCoffee.swift
//  Dream_20180723_Bridge
//
//  Created by Dream on 2018/7/23.
//  Copyright © 2018年 Tz. All rights reserved.
//

import UIKit

class SmallCoffee: Coffee {

    override func makeCoffee() {
        print("小杯\(addtives.addtives())的咖啡")
    }
    
}

调用

        //来一杯饮料
        let ice = SugarAddtives()
        let coffee = BigCoffee(addtives: ice)
        coffee.makeCoffee()

输出

大杯加糖的咖啡

桥接模式UML

相关文章

  • 设计模式-桥接模式

    设计模式-桥接模式 定义 桥接模式(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/brxlvqtx.html