设计模式(十):装饰者模式

设计模式(十):装饰者模式

  • [1. 装饰者模式的介绍](#1. 装饰者模式的介绍)
  • [2. 装饰者模式的类图](#2. 装饰者模式的类图)
  • [3. 装饰者模式的实现](#3. 装饰者模式的实现)
    • [3.1 创建一个抽象组建Chef](#3.1 创建一个抽象组建Chef)
    • [3.2 创建两个具体组件ChineseChef和EuropeanChef](#3.2 创建两个具体组件ChineseChef和EuropeanChef)
    • [3.3 创建抽象装饰器ChefDecorator](#3.3 创建抽象装饰器ChefDecorator)
    • [3.4 创建具体装饰器PlateChefDecorator](#3.4 创建具体装饰器PlateChefDecorator)
    • [3.5 测试](#3.5 测试)

1. 装饰者模式的介绍

装饰器模式(Decorator Pattern)属于结构型模式,允许向一个现有的对象添加新的功能,同时又不改变其结构。

装饰器模式通过将对象包装在装饰器类中,以便动态地修改其行为。

装饰器模式包含四个核心角色:

  • 抽象组件(Component):定义了原始对象和装饰器对象的公共接口或抽象类,可以是具体组件类的父类或接口。
  • 具体组件(Concrete Component):是被装饰的原始对象,它定义了需要添加新功能的对象。
  • 抽象装饰器(Decorator):继承自抽象组件,它包含了一个抽象组件对象,同时可以通过组合方式持有其他装饰器对象。
  • 具体装饰器(Concrete Decorator):实现了抽象装饰器的接口,负责向抽象组件添加新的功能。具体装饰器通常会在调用原始对象的方法之前或之后执行自己的操作。

2. 装饰者模式的类图

3. 装饰者模式的实现

3.1 创建一个抽象组建Chef

java 复制代码
package blog;

/**
 * 厨师
 */
public interface Chef {
    void cook();
}

3.2 创建两个具体组件ChineseChef和EuropeanChef

java 复制代码
package blog;

/**
 * 中国厨师
 */
public class ChineseChef implements Chef {

    @Override
    public void cook() {
        System.out.println("制作中餐");
    }
}
java 复制代码
package blog;

/**
 * 西方厨师
 */
public class EuropeanChef implements Chef{
    @Override
    public void cook() {
        System.out.println("制作西餐");
    }
}

3.3 创建抽象装饰器ChefDecorator

java 复制代码
package blog;

/**
 * 厨师装饰器
 */
public abstract class ChefDecorator implements Chef {
    protected Chef chef;

    public ChefDecorator(Chef chef) {
        this.chef = chef;
    }
}

3.4 创建具体装饰器PlateChefDecorator

java 复制代码
package blog;

/**
 * 厨师摆盘装饰器
 */
public class PlateChefDecorator extends ChefDecorator{
    public PlateChefDecorator(Chef chef) {
        super(chef);
    }

    @Override
    public void cook() {
        chef.cook();
        plate();
    }

    private void plate() {
        if (chef instanceof ChineseChef) {
            System.out.println("中式摆盘");
        } else {
            System.out.println("西式摆盘");
        }
    }
}

3.5 测试

java 复制代码
package blog;

public class DecoratorDemo {
    public static void main(String[] args) {
        ChineseChef chineseChef = new ChineseChef();
        PlateChefDecorator plateChineseChef = new PlateChefDecorator(chineseChef);
        plateChineseChef.cook();

        EuropeanChef europeanChef = new EuropeanChef();
        PlateChefDecorator plateEuropeanChef = new PlateChefDecorator(europeanChef);
        plateEuropeanChef.cook();

    }
}
相关推荐
起名字真南17 分钟前
【OJ题解】C++实现字符串大数相乘:无BigInteger库的字符串乘积解决方案
开发语言·c++·leetcode
爬山算法22 分钟前
Maven(28)如何使用Maven进行依赖解析?
java·maven
tyler_download28 分钟前
golang 实现比特币内核:实现基于椭圆曲线的数字签名和验证
开发语言·数据库·golang
小小小~29 分钟前
qt5将程序打包并使用
开发语言·qt
hlsd#29 分钟前
go mod 依赖管理
开发语言·后端·golang
小春学渗透31 分钟前
Day107:代码审计-PHP模型开发篇&MVC层&RCE执行&文件对比法&1day分析&0day验证
开发语言·安全·web安全·php·mvc
杜杜的man33 分钟前
【go从零单排】迭代器(Iterators)
开发语言·算法·golang
亦世凡华、34 分钟前
【启程Golang之旅】从零开始构建可扩展的微服务架构
开发语言·经验分享·后端·golang
编程、小哥哥43 分钟前
设计模式之抽象工厂模式(替换Redis双集群升级,代理类抽象场景)
redis·设计模式·抽象工厂模式
2401_857439691 小时前
SpringBoot框架在资产管理中的应用
java·spring boot·后端