大话设计模式之装饰模式

装饰模式(Decorator Pattern)是一种结构型设计模式,它允许向现有对象动态地添加新功能,同时又不改变其结构。装饰模式通过将对象放入包装器中来实现,在包装器中可以动态地添加功能。

在装饰模式中,通常会有四个角色:

  1. Component(组件):定义一个对象接口,可以动态地给这些对象添加职责。
  2. ConcreteComponent(具体组件):实现Component接口,并定义需要被装饰的类。
  3. Decorator(装饰器):持有一个Component对象的引用,并定义一个与Component接口一致的接口。
  4. ConcreteDecorator(具体装饰器):扩展Decorator类,覆盖其中的方法,以添加新的功能。
cpp 复制代码
#include <iostream>

// Component(组件)
class Coffee {
public:
    virtual void makeCoffee() = 0;
};

// ConcreteComponent(具体组件)
class SimpleCoffee : public Coffee {
public:
    void makeCoffee() override {
        std::cout << "Making simple coffee" << std::endl;
    }
};

// Decorator(装饰器)
class CoffeeDecorator : public Coffee {
protected:
    Coffee* coffee;

public:
    CoffeeDecorator(Coffee* coffee) : coffee(coffee) {}

    void makeCoffee() override {
        if (coffee) {
            coffee->makeCoffee();
        }
    }
};

// ConcreteDecorator(具体装饰器)
class MilkDecorator : public CoffeeDecorator {
public:
    MilkDecorator(Coffee* coffee) : CoffeeDecorator(coffee) {}

    void makeCoffee() override {
        if (coffee) {
            coffee->makeCoffee();
            addMilk();
        }
    }

    void addMilk() {
        std::cout << "Adding milk" << std::endl;
    }
};

// ConcreteDecorator(具体装饰器)
class SugarDecorator : public CoffeeDecorator {
public:
    SugarDecorator(Coffee* coffee) : CoffeeDecorator(coffee) {}

    void makeCoffee() override {
        if (coffee) {
            coffee->makeCoffee();
            addSugar();
        }
    }

    void addSugar() {
        std::cout << "Adding sugar" << std::endl;
    }
};

int main(int argc, char *argv[])
{
    // 创建一个简单的咖啡对象
    Coffee* simpleCoffee = new SimpleCoffee();

    // 使用装饰器为咖啡添加牛奶
    Coffee* milkCoffee = new MilkDecorator(simpleCoffee);

    // 制作带牛奶的咖啡
    milkCoffee->makeCoffee();

    // 使用装饰器为牛奶咖啡添加糖
    Coffee* milkSugarCoffee = new SugarDecorator(milkCoffee);
    milkSugarCoffee->makeCoffee();

    delete simpleCoffee;
    delete milkCoffee;
    delete milkSugarCoffee;

    return 0;
}
相关推荐
Yu_Lijing5 小时前
基于C++的《Head First设计模式》笔记——备忘录模式
c++·笔记·设计模式·备忘录模式
无籽西瓜a6 小时前
【西瓜带你学设计模式 | 第二期-观察者模式】观察者模式——推模型与拉模型实现、优缺点与适用场景
java·后端·观察者模式·设计模式
我真会写代码9 小时前
Java程序员常用设计模式详解(实战版)
java·开发语言·设计模式
无籽西瓜a11 小时前
【西瓜带你学设计模式 | 第一期-单例模式】单例模式——定义、实现方式、优缺点与适用场景以及注意事项
java·后端·单例模式·设计模式
cliffordl21 小时前
设计模式(python)
python·设计模式
云道轩1 天前
告诉 Claude Code 在项目中遵循特定的编程模式/设计模式和技术栈约束
设计模式·ai·agent·claude code
花间相见1 天前
【Java基础面试题】—— 核心知识点面试题(含答案):语法+集合+JVM+设计模式+算法
java·jvm·设计模式
朱一头zcy1 天前
设计模式入门:最简单的模板方法模式
笔记·设计模式·模板方法模式
君主黑暗1 天前
设计模式-观察者模式
观察者模式·设计模式
砍光二叉树1 天前
【设计模式】结构型-组合模式
设计模式·组合模式