装饰模式(Decorator)

简介: 装饰模式(Decorator)

2015/4/28

装饰模式(Decorator),动态的给一个对象添加一些额外的职责,就增加功能来说,装饰模式比生成子类更为灵活。—大话设计模式

#include <vector>
#include <iostream>
using namespace std;
/*基类*/
class Component{
    public:
        virtual void Operation(){
            cout<<"的";
        };
};
/*被装饰类*/ 
class ConcreteComponent:public Component{
    public:
    void Operation(){
        Component::Operation();
    cout<<"小瞿"<<endl; 
    }
};
/*装饰类的基类*/ 
class Decorator:public Component{
    private:
        /*
        此处为了让装饰类连成环并且可以指向装饰类也可以指向被装饰类
        所以使用了同一个基类指针形成多态 
        */
        Component *pc;
    public:
        Decorator(Component *p){ this->pc=p;}
    virtual void Operation(){
        pc->Operation();
    }
};
class ConcreteDecoratorA:public Decorator{
    public:
        ConcreteDecoratorA(Component *t):Decorator(t){
        }
        void Operation()
        {
            cout<<"打着领带";
            Decorator::Operation();
        }
}; 
class ConcreteDecoratorB:public Decorator{
    public:
        ConcreteDecoratorB(Component *t):Decorator(t){
        }
        void Operation()
        {
            cout<<"身穿西装"; 
            Decorator::Operation();
        }
}; 
class ConcreteDecoratorC:public Decorator{
    public:
        ConcreteDecoratorC(Component *t):Decorator(t){
        }
        void Operation()
        {
            cout<<"穿着皮鞋"; 
            Decorator::Operation();
        }
}; 
int main(void)
{
    Component *p=new ConcreteComponent();
    Component *p1=new ConcreteDecoratorC(p);
    Component *p2=new  ConcreteDecoratorB(p1);
    Component *p3=new ConcreteDecoratorA(p2);
    p3->Operation();
    return 0;
}

何时使用装饰模式:当系统有了新的功能需要添加的时候,就是向旧的类添加新的修饰代码。

但是具有缺点:装饰模式顺序很重要

相关文章
|
设计模式
设计模式13 - 装饰模式【Decorator Pattern】
设计模式13 - 装饰模式【Decorator Pattern】
32 0
|
7月前
|
设计模式
设计模式之装饰器 Decorator
设计模式之装饰器 Decorator
52 1
|
设计模式 Java
Java设计模式-装饰器模式(Decorator)
Java设计模式-装饰器模式(Decorator)
结构型模式 - 装饰器模式(Decorator Pattern)
结构型模式 - 装饰器模式(Decorator Pattern)
|
设计模式 自动驾驶
装饰器模式Decorator
煎饼果子装饰器&汽车装饰器
591 3
装饰器模式Decorator
|
设计模式 缓存 Java
设计模式-Adapter适配器模式和Decorator装饰者模式
设计模式-Adapter适配器模式和Decorator装饰者模式
设计模式-Adapter适配器模式和Decorator装饰者模式
|
设计模式 uml
设计模式——装饰模式(Decorator)
设计模式——装饰模式(Decorator)
154 0
设计模式——装饰模式(Decorator)
|
设计模式 Java
Java设计模式——装饰模式(Decorator Pattern)
Java设计模式——装饰模式(Decorator Pattern)
209 0
Java设计模式——装饰模式(Decorator Pattern)
|
设计模式 缓存 Java
结构型-Decorator
装饰器模式主要解决继承关系过于复杂的问题,通过组合来替代继承。它主要的作用是给原始类添加增强功能。这也是判断是否该用装饰器模式的一个重要的依据。除此之外,装饰器模式还有一个特点,那就是可以对原始类嵌套使用多个装饰器。为了满足这个应用场景,在设计的时候,装饰器类需要跟原始类继承相同的抽象类或者接口。
102 0
|
设计模式 Java
浅谈JAVA设计模式之——装饰模式(Decorator)
动态地给一个对象添加一些额外的职责。就增加功能来说,Decorator模式相比生成子类更为灵活。
159 0
浅谈JAVA设计模式之——装饰模式(Decorator)