外观者模式

作者: 架构师的一小步 | 来源:发表于2019-03-23 21:00 被阅读0次
外观模式-定义?

另外一种称呼:门面模式
第一点:要求一个子系统的外部和其内部的通信必需通过一个统一的对象进行。
第二点:外观模式提供了一个高层次接口,使得子系统更易于使用

外观模式-场景?

场景一:为复杂系统提供一个简单接口
场景二:当我们在构建一个层次结构的子系统时,使用Facade模式定义子系统中每一层入口点。如果子系统之间相互依赖,可以通过此模式简化它们之间的依赖关系。

外观模式-角色划分?

两个核心角色
角色一:系统对外统一接口
角色二:子系统接口

外观模式-原理案例?

电脑:拍照(摄像头)、打电话、上网(网卡)、听音乐…
每一个功能模块都是一个高层次接口
电脑:Computer
做开发->ViewController(拆分模块)
UI模块(典型:UITableView)、网络模块
适配器模式
根据案例分析概念,反复思考推敲领悟,然后查看开发中代码,然后在思考,在改进。(我曾经CTO也是这样教我的)

//
//  Computer.swift
//  Dream_20180725_Facade
//
//  Created by Dream on 2018/7/25.
//  Copyright © 2018年 Tz. All rights reserved.
//

import UIKit

class Computer: NSObject {
    
    private var camara:CamaraProtocol
    private var game:GameProtocol
    private var music:MusicProtocol
    
    override init() {
        self.camara = CamaraImpl()
        self.game = GameImpl()
        self.music = MusicImpl()
        super.init()
    }

    //开启相机
    func startCamara() {
        //启动相机,预览画面,开始拍照
        self.camara.open()
        self.camara.takePicture()
    }
    
    //玩游戏
    func playGame() {
        //启动游戏,加载游戏,开始游戏...
        self.game.open()
        self.game.startGame()
    }
    
    //听音乐
    func playMusic() {
        //...
        self.music.open()
        self.music.startMusic()
    }
    
}

//
//  CamaraProtocol.swift
//  Dream_20180725_Facade
//
//  Created by Dream on 2018/7/25.
//  Copyright © 2018年 Tz. All rights reserved.
//

import UIKit

//相机模块->接口
protocol CamaraProtocol {
    func open()
    func takePicture()
    func close()
}

//
//  CamaraImpl.swift
//  Dream_20180725_Facade
//
//  Created by Dream on 2018/7/25.
//  Copyright © 2018年 Tz. All rights reserved.
//

import UIKit

class CamaraImpl: CamaraProtocol {

    func open(){
        print("开启相机")
    }
    
    func takePicture(){
        print("开始拍照")
    }
    
    func close(){
        print("关闭相机")
    }
    
}

//
//  GameProtocol.swift
//  Dream_20180725_Facade
//
//  Created by Dream on 2018/7/25.
//  Copyright © 2018年 Tz. All rights reserved.
//

import UIKit

protocol GameProtocol {
    
    func open()
    func startGame()
    func close()
    
}

//
//  GameImpl.swift
//  Dream_20180725_Facade
//
//  Created by Dream on 2018/7/25.
//  Copyright © 2018年 Tz. All rights reserved.
//

import UIKit

class GameImpl: GameProtocol {

    func open(){
        print("启动游戏之旅")
    }
    
    func startGame(){
        print("开始游戏")
    }
    
    func close(){
        print("关闭游戏")
    }
    
}

//
//  MusicProtocol.swift
//  Dream_20180725_Facade
//
//  Created by Dream on 2018/7/25.
//  Copyright © 2018年 Tz. All rights reserved.
//

import UIKit

protocol MusicProtocol {
    
    func open()
    func startMusic()
    func close()
    
}

//
//  MusicImpl.swift
//  Dream_20180725_Facade
//
//  Created by Dream on 2018/7/25.
//  Copyright © 2018年 Tz. All rights reserved.
//

import UIKit

class MusicImpl: MusicProtocol {

    func open(){
        print("开启音乐")
    }
    
    func startMusic(){
        print("开始播放")
    }
    
    func close(){
        print("关闭播放")
    }
    
}

调用

//
//  ViewController.swift
//  Dream_20180725_Facade
//
//  Created by Dream on 2018/7/25.
//  Copyright © 2018年 Tz. All rights reserved.
//

import UIKit

class ViewController: UIViewController {
    
    //外观模式
    //持有adapter引用
    //伪代码
    //private var adapter:BaseAdapter?
    //持有网络请求模块引用
    //private var https:HttpUtils?
    //iOS、安卓(老项目:网络请求、UI、数据库、缓存...)

    override func viewDidLoad() {
        super.viewDidLoad()
        let computer = Computer()
        computer.startCamara()
    }

    override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
        // Dispose of any resources that can be recreated.
    }


}


外观模式-UML类图?

相关文章

  • 外观者模式

    一、概念 二、UML图 三、角色 四、优缺点 优点 五、场景

  • 外观者模式

    应用场景 简化客户端与子系统的交互,为复杂的子系统调用提供了一个统一的接口 类图 优点 降低客户端...

  • 外观者模式

    外观模式-定义? 另外一种称呼:门面模式第一点:要求一个子系统的外部和其内部的通信必需通过一个统一的对象进行。第二...

  • 外观者模式

    当一个系统有很多接口,而各个接口又必须相互调用时,对客户端而言,必须熟悉每一个接口然后组合一组接口实现功能,而且如...

  • 计算机等级考试三级数据库复习(五)

    1.数据库系统 三级模式——》内模式,模式,外模式 二级映像模式(外模式/模式,模式/内模式) 模式/内模式提供数...

  • 10.17

    反思,就是把自己置身事外,站在旁观者上看事情,所谓旁观者清,就是这个意思,在旁观者的角度上思考与反思。

  • 设计模式系列—适配器模式和外观模式

    《Head First设计模式》读书笔记 适配器模式和外观者模式 一,写在最前面 1,为什么要将这两个设计模式写在...

  • 数据库系统的模式

    体系结构:三级模式外模式,逻辑模式和内模式 二级映射模式 外映射用户 数据共享,首要 数据独立 数据独立,物理独立...

  • 数据库系统ER模型和关系代数

    1. 数据库模式 三级模式:外模式对应视图,模式(也称为概念模式)对应数据库表,内模式对应物理文件。 两层映像:外...

  • 实修课7.乐观还是悲观

    美国积极心理学之父塞利格曼,通过大量的研究发现活得开心幸福的人(乐观者)和活得痛苦的人(悲观者),他们的思维模式有...

网友评论

    本文标题:外观者模式

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