2 Star 7 Fork 614

ALONE_WORK/DesignPattern

forked from Micooz/DesignPattern 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Visitor.cpp 591 Bytes
一键复制 编辑 原始数据 按行查看 历史
Micooz 提交于 2014-10-09 10:37 . 加入访问者模式,责任链模式
#include "Visitor.h"
#include <iostream>
using namespace std;
Visitor::Visitor() {
}
Visitor::~Visitor() {
}
void ConcreteVisitorA::VisitConcreteElementA(Element* elm) {
cout << "i will visit ConcreteElementA..." << endl;
}
void ConcreteVisitorA::VisitConcreteElementB(Element* elm) {
cout << "i will visit ConcreteElementB..." << endl;
}
void ConcreteVisitorB::VisitConcreteElementA(Element* elm) {
cout << "i will visit ConcreteElementA..." << endl;
}
void ConcreteVisitorB::VisitConcreteElementB(Element* elm) {
cout << "i will visit ConcreteElementB..." << endl;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/ALONE_WORK/DesignPattern.git
git@gitee.com:ALONE_WORK/DesignPattern.git
ALONE_WORK
DesignPattern
DesignPattern
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385