设计模式之命令模式(Command)的C++实现

1、命令模式的提出

在软件开发过程中,"行为请求者"和"行为实现者"通常呈现一种"紧耦合",如果行为的实现经常变化,则不利于代码的维护。命令模式可以将行为的请求者和行为的实现者进行解耦。具体流程是将行为请求者封装成一个对象,将行为实现者抽象成一个类。

2、需求描述

有2两种不同的行为,两种不同行为分别对应不同的操作。设计一个代码,可以实现不同的行为对应不同的处理行为。

3、功能实现

(1)UML图如下:

(2)代码实现如下:

cpp 复制代码
#include <iostream>
#include <vector>

// 命令接口
class Command {
public:
    Command(std::string cmd):m_strCmd(cmd){};
    virtual ~Command() {}
    virtual void execute() = 0;
    std::string& getCmd(){return m_strCmd;};
private:
    std::string m_strCmd;
};


class ConcreteCommand1 : public Command {
public:
    ConcreteCommand1(std::string str):Command(str){};
    void execute() override {
        std::cout << "ConcreteCommand1: " << getCmd() << std::endl;
        // todo something...
    }
};

class ConcreteCommand2 : public Command {
public:
    ConcreteCommand2(std::string str):Command(str){};
    void execute() override {
        std::cout << "ConcreteCommand2: " << getCmd() << std::endl;
        // todo something...
    }
};

// 命令请求者
class Requester {
private:
    std::vector<Command*> m_vecCommands;

public:
    void aadCommand(Command* cmd) {
        m_vecCommands.emplace_back(cmd);
    }

    void executeCommand() {
        for(auto& it:m_vecCommands)
        {
            it->execute();
        }
    }
};

class Client
{
public:
	void doWork()
	{
	    Requester request;
        Command* command1 = new ConcreteCommand1("Command1");
        Command* command2 = new ConcreteCommand2("Command2");
	    
        request.aadCommand(command1);
        request.aadCommand(command2);
        request.executeCommand();
	   
        delete command1;
        delete command2;
        command1 = nullptr;
        command2 = nullptr;
	};
}

int main() {
	Client obj;
	obj.doWork();
    return 0;
}

程序运行结果如下:

相关推荐
乐悠小码21 小时前
Java设计模式精讲---03建造者模式
java·设计模式·建造者模式
_院长大人_1 天前
设计模式-代理模式
设计模式·代理模式
guangzan1 天前
TypeScript 中的单例模式
设计模式
乐悠小码2 天前
Java设计模式精讲---02抽象工厂模式
java·设计模式·抽象工厂模式
乙己4072 天前
设计模式——原型模式(prototype)
设计模式·原型模式
⑩-2 天前
浅学Java-设计模式
java·开发语言·设计模式
攻心的子乐2 天前
软考 关于23种设计模式
java·开发语言·设计模式
成钰2 天前
设计模式之单例模式:一个类就只有一个实例
单例模式·设计模式
o0向阳而生0o2 天前
110、23种设计模式之状态模式(19/23)
设计模式·状态模式
_院长大人_2 天前
设计模式-单例模式
单例模式·设计模式