【设计模式之装饰器模式 -- C++】

7.装饰器模式 – 包装对象,增强功能

装饰模式指的是在不必改变原类文件和使用继承的情况下,动态地扩展一个对象的功能。它是通过创建一个包装对象,也就是装饰来包裹真实的对象。百度百科

1)设计原则 – 抽象父类,子类实现
  1. 多组合,少继承。
    利用继承设计子类的行为,是在编译时静态决定的,而且所有的子类都会继承到相同的行为。然而,如果能够利用组合的做法扩展对象的行为,就可以在运行时动态地进行扩展。
  2. 类应设计的对扩展开放,对修改关闭。
2)优点

1.decorator模式与继承关系的目的都是要扩展对象的功能,但是decorator可以提供更多的灵活性
2。通过使用不同的具体装饰类以及这些装饰类的排列组合,设计师可以创造出很多不同行为的组合。

3)缺点

1.更多的复杂性
2.设计中会出现很多小类,过度使用,会使程序更复杂。

4)实现
// 装饰器模式
// 时间:2024-2-1
// 作者:@conceal
#include <iostream>
#include <string>
using namespace std;

class Component
{
   
public:
    virtual void Operation() = 0;
};

class ConcreteComponent : public Component
{
   
public:
    void Operation()
    {
   
        cout << "ConcreteComponent operation..." << endl;
    }
};

class Decorator : public Component
{
   
public:
    Decorator(Component* component) : m_component(component) {
   }
    void Operation()
    {
   
        m_component->Operation();
    }
private:
    Component* m_component;
};

class ConcreteDecoratorA : public Decorator
{
   
public:
    ConcreteDecoratorA(Component* component) : Decorator(component) {
   }
    void Operation()
    {
   
        Decorator::Operation();
        AddedBehavior();
        cout << "ConcreteDecoratorA operation..." << endl;
    }
    void AddedBehavior()
    {
   
        cout << "ConcreteDecoratorA added behavior..." << endl;
    }
};

class ConcreteDecoratorB : public Decorator
{
   
public:
    ConcreteDecoratorB(Component* component) : Decorator(component) {
   }
    void Operation()
    {
   
        Decorator::Operation();
        AddedBehavior();
        cout << "ConcreteDecoratorB operation..." << endl;
    }
    void AddedBehavior()
    {
   
        cout << "ConcreteDecoratorB added behavior..." << endl;
    }
};

int main()
{
   
    Component* component = new ConcreteComponent();
    Decorator* decoratorA = new ConcreteDecoratorA(component);
    Decorator* decoratorB = new ConcreteDecoratorB(decoratorA);
    decoratorB->Operation();
    delete decoratorB;
    delete decoratorA;
    delete component;
    return 0;
}

相关推荐

  1. 设计模式装饰模式 -- C++】

    2024-02-03 09:22:01       36 阅读
  2. 【前端设计模式装饰模式

    2024-02-03 09:22:01       39 阅读
  3. 设计模式装饰模式

    2024-02-03 09:22:01       38 阅读
  4. 设计模式装饰模式

    2024-02-03 09:22:01       14 阅读
  5. 设计模式装饰模式

    2024-02-03 09:22:01       11 阅读

最近更新

  1. TCP协议是安全的吗?

    2024-02-03 09:22:01       18 阅读
  2. 阿里云服务器执行yum,一直下载docker-ce-stable失败

    2024-02-03 09:22:01       19 阅读
  3. 【Python教程】压缩PDF文件大小

    2024-02-03 09:22:01       18 阅读
  4. 通过文章id递归查询所有评论(xml)

    2024-02-03 09:22:01       20 阅读

热门阅读

  1. 前端工程化之:webpack1-12(常用扩展)

    2024-02-03 09:22:01       36 阅读
  2. 【Redis】理论基础 - 持久化

    2024-02-03 09:22:01       29 阅读
  3. 8-Docker网路模式之自定义网络

    2024-02-03 09:22:01       35 阅读
  4. curl之网络接口

    2024-02-03 09:22:01       35 阅读