《HeadFirst设计模式(第二版)》第七章代码——外观模式

这篇具有很好参考价值的文章主要介绍了《HeadFirst设计模式(第二版)》第七章代码——外观模式。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

代码文件目录:

《HeadFirst设计模式(第二版)》第七章代码——外观模式,HeadFirst设计模式(第二版)源码,设计模式,外观模式,java

 Subsystem:
Amplifier
package Chapter7_AdapterAndFacadePattern.FacadePattern.Subsystem;

/**
 * @Author 竹心
 * @Date 2023/8/8
 **/

//扬声器
public class Amplifier {
    int volume = 0;//音量

    public void on(){
        System.out.println("The amplifier is on!");
    }

    public void off(){
        System.out.println("The amplifier is off!");
    }

    public void setStreamingPlayer(){
        System.out.println("The amplifier setting to streamingPlayer mode!");
    }

    public void setVolume(int volume) {
        System.out.println("The amplifier volume is set to 5!");
        this.volume = volume;
    }

    public void setSurroundSound(){
        System.out.println("The amplifier is set to SurroundSound mode");
    }

    @Override
    public String toString() {
        return "Amplifier{" +
                "volume=" + volume +
                '}';
    }
}
PopcornPopper
package Chapter7_AdapterAndFacadePattern.FacadePattern.Subsystem;

/**
 * @Author 竹心
 * @Date 2023/8/8
 **/

public class PopcornPopper {
    public void on(){
        System.out.println("The popcorn popper is on!");
    }

    public void off(){
        System.out.println("The popcorn popper is off!");
    }

    public void pop(){
        System.out.println("The popcorn popper is popping!");
    }

    @Override
    public String toString() {
        return this.getClass().getSimpleName();
    }
}

Projector

package Chapter7_AdapterAndFacadePattern.FacadePattern.Subsystem;

/**
 * @Author 竹心
 * @Date 2023/8/8
 **/

//投影仪
public class Projector {
    public void on(){
        System.out.println("The Projector is on!");
    }

    public void off(){
        System.out.println("The Projector is off!");
    }

    public void WideScreenMode(){
        System.out.println("The Projector is in WideScreenMode!");
    }

    @Override
    public String toString() {
        return this.getClass().getSimpleName();
    }
}

Screen文章来源地址https://www.toymoban.com/news/detail-639020.html

package Chapter7_AdapterAndFacadePattern.FacadePattern.Subsystem;

/**
 * @Author 竹心
 * @Date 2023/8/8
 **/

public class Screen {
    public void up(){
        System.out.println("The screen going up!");
    }

    public void down(){
        System.out.println("The screen going down!");
    }

    @Override
    public String toString() {
        return this.getClass().getSimpleName();
    }
}
StreamPlayer
package Chapter7_AdapterAndFacadePattern.FacadePattern.Subsystem;

/**
 * @Author 竹心
 * @Date 2023/8/8
 **/

public class StreamPlayer {
    String movie;

    public void on(){
        System.out.println("The StreamPlayer is on!");
    }

    public void off(){
        System.out.println("The StreamPlayer is off!");
    }

    public void pause(){
        System.out.println("The StreamPlayer is pausing!");
    }

    public void play(String movie){
        this.movie= movie;
        System.out.println("The StreamPlayer is playing the "+this.movie);
    }

    public void stop(){
        System.out.println("The StreamPlayer stops!");
    }

    @Override
    public String toString() {
        return this.getClass().getSimpleName();
    }
}
TheaterLights
package Chapter7_AdapterAndFacadePattern.FacadePattern.Subsystem;

/**
 * @Author 竹心
 * @Date 2023/8/8
 **/

public class TheaterLights {
    public void on(){
        System.out.println("The theater lights are on!");
    }

    public void off(){
        System.out.println("The theater lights are off!");
    }

    public void dim(){
        //这里偷懒不将灯的亮度设置为属性了
        System.out.println("The theater lights are dimming to 10%");
    }

    @Override
    public String toString() {
        return this.getClass().getSimpleName();
    }
}
HomeTheaterFacade
package Chapter7_AdapterAndFacadePattern.FacadePattern;

import Chapter7_AdapterAndFacadePattern.FacadePattern.Subsystem.*;

/**
 * @Author 竹心
 * @Date 2023/8/8
 **/

public class HomeTheaterFacade {
    Amplifier amp;
    StreamPlayer player;
    Projector projector;
    TheaterLights lights;
    Screen screen;
    PopcornPopper popper;


    public HomeTheaterFacade(Amplifier amp,
                             StreamPlayer player,
                             Projector projector,
                             TheaterLights lights,
                             Screen screen,
                             PopcornPopper popper) {
        this.amp = amp;
        this.player = player;
        this.projector = projector;
        this.lights = lights;
        this.screen = screen;
        this.popper = popper;
    }

    public void watchMovie(String movie){
        System.out.println("Get ready to watch a movie!");
        this.popper.on();
        this.popper.pop();

        this.lights.on();
        this.lights.dim();

        this.screen.down();

        this.projector.on();
        this.projector.WideScreenMode();

        this.amp.on();
        this.amp.setStreamingPlayer();
        this.amp.setSurroundSound();
        this.amp.setVolume(5);

        this.player.on();
        this.player.play(movie);
        System.out.println("Now, enjoy the movie!\n\n");
    }

    public void endMovie(){
        System.out.println("Shutting movie theater down!");
        this.popper.off();
        this.player.stop();
        this.player.off();
        this.amp.off();
        this.projector.off();
        this.screen.up();
        this.lights.off();
    }
}
HomeTheaterTestDrive
package Chapter7_AdapterAndFacadePattern.FacadePattern;

import Chapter7_AdapterAndFacadePattern.FacadePattern.Subsystem.*;

/**
 * @Author 竹心
 * @Date 2023/8/8
 **/

public class HomeTheaterTestDrive {
    public static void main(String[] args) {
        Amplifier amplifier = new Amplifier();
        StreamPlayer streamPlayer = new StreamPlayer();
        Projector projector = new Projector();
        PopcornPopper popper = new PopcornPopper();
        TheaterLights lights = new TheaterLights();
        Screen screen = new Screen();

        HomeTheaterFacade homeTheater = new HomeTheaterFacade(amplifier,
                streamPlayer,projector,lights,screen,popper);

        homeTheater.watchMovie("Titanic");

        homeTheater.endMovie();

    }
}
notes.txt
外观模式:
    为子系统中的一组接口提供统一的接口。外观定义了一个更高级别的接口,使得子系统更容易被使用

    当用户类要通过调用一系列的组件类的接口来实现某个最终的目的的时候,可以将这些组件类的接口
    统合在一起,形成一个新的接口,然后客户直接调用该接口,实现解耦合。

最少知识原则:
    一个对象只调用这些方法:对象自身的、作为参数传给方法发对象的、该方法创建或者实例化的任何对象、
    对象的任何组件。

    比如:
        1. return this.car.start();  可以
        2. return this.car.engine.start(); 不可以

    优缺点:一方面减少耦合度,减低维护成本;另一方面会使得“包装者”类增加,造成复杂度和开发时间增加
        同时还会降低运行时的性能。

到了这里,关于《HeadFirst设计模式(第二版)》第七章代码——外观模式的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • 《HeadFirst设计模式(第二版)》第十一章代码——代理模式

    代码文件目录:  RMI: MyRemote MyRemoteClient MyRemoteImpl 能够远程监控的糖果机: 在上一章的代码的基础上做一些修改 GumballMachine GumballMachineRemote GumballMachineTestDrive GumballMonitor GumballMonitorTestDrive 五个状态类: 同样的修改:

    2024年02月12日
    浏览(38)
  • 《HeadFirst设计模式(第二版)》第八章代码——模板方法模式

    代码文件目录:   CaffeineBeverage Coffee Tea notes

    2024年02月12日
    浏览(40)
  • 《HeadFirst设计模式(第二版)》第五章代码——单例模式

    代码文件目录:  初始版本: 三种解决多线程问题的方法: Notes:

    2024年02月13日
    浏览(39)
  • 【设计模式】第七章:代理模式详解及应用案例

    【设计模式】七大设计原则 【设计模式】第一章:单例模式 【设计模式】第二章:工厂模式 【设计模式】第三章:建造者模式 【设计模式】第四章:原型模式 【设计模式】第五章:适配器模式 【设计模式】第六章:装饰器模式 【设计模式】第七章:代理模式 【设计模式

    2024年02月12日
    浏览(39)
  • JAVA设计模式第七讲:设计模式在 Spring 源码中的应用

    设计模式(design pattern)是对软件设计中普遍存在的各种问题,所提出的解决方案。本文以面试题作为切入点,介绍了设计模式的常见问题。 我们需要掌握各种设计模式的原理、实现、设计意图和应用场景,搞清楚能解决什么问题 。 本文是第七篇:设计模式在 Spring 源码中的

    2024年02月09日
    浏览(44)
  • 《微服务架构设计模式》第二章

    软件架构的定义 看一下大佬是怎么说的: 计算机系统的软件架构是构建这个系统所需要的一组结构,包括软件元素、它们之间的关系以及两者的属性。 --Bass等著《Documenting Software Architectures:Views and Beyond》 这个定义将软件分解为元素和元素之间的关系两个部分,就像一辆汽车

    2024年02月09日
    浏览(44)
  • 二十三种设计模式第二十篇--备忘录模式

    备忘录模式,备忘录模式属于行为型模式。它允许在不破坏封装的情况下捕获和恢复对象的内部状态。 保存一个对象的某个状态,以便在适当的时候恢复对象,该模式通过创建一个备忘录对象来保存原始对象的状态,并将其存储在一个负责管理备忘录的负责人对象中。 备忘

    2024年02月14日
    浏览(42)
  • 【数据库复习】第七章 数据库设计

    数据库设计的过程(六个阶段) ⒈需求分析阶段 准确了解与分析用户需求(包括数据与处理) 最困难、最耗费时间的一步 ⒉概念结构设计阶段 整个数据库设计的关键 通过对用户需求进行综合、归纳与抽象,形成一个独立于具体DBMS的概念模型 ⒊逻辑结构设计阶段 将概念结构

    2024年02月08日
    浏览(54)
  • 二十三种设计模式第二十四篇--访问者模式(完结撒花)

    在访问者模式(Visitor Pattern)中,我们使用了一个访问者类,它改变了元素类的执行算法。 通过这种方式,元素的执行算法可以随着访问者改变而改变。 这种类型的设计模式属于行为型模式。根据模式,元素对象已接受访问者对象,这样访问者对象就可以处理元素对象上的

    2024年02月14日
    浏览(44)
  • 基于FPGA的UDP协议栈设计第七章_RGMII模块设计

    该部分内容主要需要掌握各种IO和时钟相关的原语使用 以太网的通信离不开PHY芯片,PHY芯片实现实现了RGMII接口到网口(RJ45)的转换, RGMII接口就是PHY芯片和FPGA之间的接口。 GMII :GMII(Gigabit Media Independant Interface),千兆MII接口。GMII采用8位接口数据,工作时钟125MHz,因此传

    2024年04月15日
    浏览(81)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包