c++开发模式,组合模式

本文详细解读组合模式,探讨其在类间关系中的作用,与装饰者模式的区别,并通过C++代码示例展示其实现。
摘要由CSDN通过智能技术生成

组合模式,顾名思义,通过组合关系定义类间的关联关系,实现了将对象组合成树形结构,最终实现类的复用。可能是由于设计模式看的多了,初看组合模式的类图,感觉和装饰者模式类图很相似,都是使用继承和组合关系,当然,也只是结构相似而已。

#include <iostream>
#include <vector>
using namespace std;

class Component {
public:
    virtual void Operation() { }

    virtual void Add(const Component& com) { }

    virtual void Remove(const Component& com) { }

    virtual Component* GetChild(int index) {
        return 0;
    }

    virtual ~Component() { }
};

class Composite :public Component {
public:
    void Add(Component* com) {
        _coms.push_back(com);
    }

    void Operation() {
        for (auto com : _coms)
            com->Operation();
    }

    void Remove(Component* com) {
        //_coms.erase(&com);
    }

    Component* GetChild(int index) {
        return _coms[index];
    }

private:
    std::vector<Component*> _coms;
};

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


int main() {
    Leaf *leaf = new Leaf();
    leaf->Operation();
    Composite *com = new Composite();
    com->Add(leaf);
    com->Operation();
    Component *leaf_ = com->GetChild(0);
    leaf_->Operation();

    delete leaf;
    delete com;

    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

vqt5_qt6

你的鼓励是我们创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值