1 Star 0 Fork 621

popey/DesignPattern

Create your Gitee Account
Explore and code with more than 14 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
CommandPattern.cpp 802 Bytes
Copy Edit Raw Blame History
Micooz authored 2014-10-08 22:20 +08:00 . 加入命令模式
#include <iostream>
using namespace std;
class Reciever {
public:
void Action() {
cout << "Reciever::Action..." << endl;
}
};
class Command {
public:
virtual ~Command() { }
virtual void Excute() = 0;
};
class ConcreteCommand :public Command {
public:
ConcreteCommand(Reciever *rev) {
_rev = rev;
}
void Excute() {
_rev->Action();
}
private:
Reciever *_rev;
};
class Invoker {
public:
Invoker(Command* cmd) {
_cmd = cmd;
}
void Invoke() {
_cmd->Excute();
}
private:
Command *_cmd;
};
int main() {
Reciever *rev = new Reciever();
Command* cmd = new ConcreteCommand(rev);
Invoker *inv = new Invoker(cmd);
inv->Invoke();
delete rev;
delete cmd;
delete inv;
return 0;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/popey/DesignPattern.git
git@gitee.com:popey/DesignPattern.git
popey
DesignPattern
DesignPattern
master

Search