訪问者模式:

定义了一个作用于一个类的一些操作,訪问者模式同意在不改变类的前提下添加一些操作。

Represent an operation to be performed on the elements of an object structure. Visitor lets you define a new operation without changing the classes of the elements on which it operates.

UML类图:



主要包括:

  1. Visitor:声明了一个全部訪问器都须要实现的接口。
  2. ConcreteVisitor:实现每一个訪问器都须要实现的接口,每一个操作知识实现了和特定类相关的一些算法。
  3. Element:定义了一个须要接受Visitor作为參数的accept方法。
  4. ConcreteElement:实现了accept方法的类。

  5. ObjectStructure:包括全部的Element对象,提供了一个高层次的接口同意visitor訪问elements元素。

    这个模式主要使用在须要给类加入一个功能,可是不希望在类中加入时使用。

    C++代码实现:

#include <iostream>
#include <list> using namespace std; class ConcreteElementA;
class ConcreteElementB; class Visitor
{
public:
virtual void visitConcreteElementA(ConcreteElementA * c)=0;
virtual void visitConcreteElementB(ConcreteElementB *)=0;
}; class ConcreteVisitor1:public Visitor
{
public:
virtual void visitConcreteElementA(ConcreteElementA * c)
{
cout<<"ConcreteVisit1 operate on ConcreteElementA"<<endl;
} virtual void visitConcreteElementB(ConcreteElementB *)
{
cout<<"ConcreteVisitor1 operate on ConcreteElementB"<<endl;
}
}; class ConcreteVisitor2:public Visitor
{
public:
virtual void visitConcreteElementA(ConcreteElementA * c)
{
cout<<"ConcreteVisit2 operate on ConcreteElementA"<<endl;
} virtual void visitConcreteElementB(ConcreteElementB *)
{
cout<<"ConcreteVisitor2 operate on ConcreteElementB"<<endl;
}
}; class Element
{
public:
virtual void accept(Visitor * visitor)=0; }; class ConcreteElementA:public Element
{
public:
void accept(Visitor * visitor)
{
visitor->visitConcreteElementA(this);
} }; class ConcreteElementB:public Element
{
public:
void accept(Visitor * visitor)
{
visitor->visitConcreteElementB(this);
} }; class ObjectStructure
{
public:
void attach(Element *e)
{
elements.push_back(e);
}
void detach(Element *e)
{
elements.remove(e);
}
void accept(Visitor * v)
{
list<Element *>::iterator iter;
for(iter=elements.begin();iter!=elements.end();iter++)
{
(*iter)->accept(v);
}
} private:
list<Element *> elements; }; int main()
{
ObjectStructure * o=new ObjectStructure();
Element * a=new ConcreteElementA();
Element * b=new ConcreteElementB();
o->attach(a);
o->attach(b); Visitor * v1=new ConcreteVisitor1();
Visitor *v2=new ConcreteVisitor2();
o->accept(v1);
o->accept(v2); delete o;
delete a;
delete b;
delete v1;
delete v2; }

运行输出:

设计模式之二十四:訪问者模式(Visitor)的更多相关文章

  1. 设计模式(二十四)——职责链模式(SpringMVC源码分析)

    1 学校 OA 系统的采购审批项目:需求是 采购员采购教学器材 1) 如果金额 小于等于 5000,  由教学主任审批 (0<=x<=5000) 2) 如果金额 小于等于 10000,   ...

  2. 设计模式之十五:訪问者模式(Visitor Pattern)

    訪问者模式(Visitor Pattern)是GoF提出的23种设计模式中的一种,属于行为模式. 据<大话设计模式>中说算是最复杂也是最难以理解的一种模式了. 定义(源于GoF<De ...

  3. 设计模式入门之訪问者模式Visitor

    //訪问者模式定义:表示一个作用于某对象结构中的各个元素的操作,它使你能够在不改变各元素类的前提下定义作用于这些元素的新操作. //从定义上看.这个模式跟装饰模式的定义非常类似(动态地给一个对象加入一 ...

  4. ASP.NET Core 3.0 : 二十四. 配置的Options模式

    上一章讲到了配置的用法及内部处理机制,对于配置,ASP.NET Core还提供了一种Options模式.(ASP.NET Core 系列目录) 一.Options的使用 上一章有个配置的绑定的例子,可 ...

  5. 设计模式之(十四)责任链模式(Chain of Responsibility)

    在业务场景中,有很多是需要审批的.审核方式还可能常常发生变化,而责任链模式就是为了解决这种场景的情况的. 责任链模式定义:十多个对象都有机会处理请求,从而避免发送者和接受者之间的耦合关系.讲这些对象连 ...

  6. 设计模式学习(二十四):Spring 中使用到的设计模式

    设计模式学习(二十四):Spring 中使用到的设计模式 作者:Grey 原文地址: 博客园:设计模式学习(二十四):Spring 中使用到的设计模式 CSDN:设计模式学习(二十四):Spring ...

  7. JAVA设计模式之 訪问者模式【Visitor Pattern】

    一.概述 訪问者模式是一种较为复杂的行为型设计模式,它包括訪问者和被訪问元素两个主要组成部分.这些被訪问的元素通常具有不同的类型,且不同的訪问者能够对它们进行不同的訪问操作.在使用訪问者模式时,被訪问 ...

  8. Java 设计模式系列(十四)命令模式(Command)

    Java 设计模式系列(十四)命令模式(Command) 命令模式把一个请求或者操作封装到一个对象中.命令模式允许系统使用不同的请求把客户端参数化,对请求排队或者记录请求日志,可以提供命令的撤销和恢复 ...

  9. Bootstrap<基础二十四> 缩略图

    Bootstrap 缩略图.大多数站点都需要在网格中布局图像.视频.文本等.Bootstrap 通过缩略图为此提供了一种简便的方式.使用 Bootstrap 创建缩略图的步骤如下: 在图像周围添加带有 ...

随机推荐

  1. Python中metaclass解释

    Classes as objects 首先,在认识metaclass之前,你需要认识下python中的class.python中class的奇怪特性借鉴了smalltalk语言.大多数语言中,clas ...

  2. Linux 备份工具

     Linux 备份工具 GNU 的传统备份工具  GNU tar — http://www.gnu.org/software/tar/ GNU cpio — http://www.gnu.org/so ...

  3. Tortoise-SVN 出现“unable to connect to a repository at url no element found”解决办法

    安装要SVN server服务器后,建立自己的Repositories,创建自己的项目文件夹 如,https://xxxxxxxxxx.com:8443/ 安装Tortoise-svn进行设置目标链接 ...

  4. 【LeetCode练习题】Partition List

    Given a linked list and a value x, partition it such that all nodes less than x come before nodes gr ...

  5. java 科学计数法表示转换

    BigDecimal strScien = new BigDecimal("9.67953970412123E-05"); System.out.println(strScien. ...

  6. windows 2003 server 安装 .NET Framework 2.0环境

    下载net2.0安装包,这里提供官方下载地址: http://www.microsoft.com/zh-cn/download/confirmation.aspx?id=1639 然后运行exe文件, ...

  7. windows2003 64位注册码 序列号 激活码

    Windows 2003 R2 64bit Enterprise VOL Edition 企业版 MR78C-GF2CY-KC864-DTG74-VMT73 VPT7T-77D38-KWVW2-2G3 ...

  8. linux底半部机制在视频采集驱动中的应用

    最近在做一个arm+linux平台的视频驱动.本来这个驱动应该是做板子的第三方提供的,结果对方软件实力很差,自己做不了这个东西,外包给了一个暑期兼职的在读博士.学生嘛,只做过实验,没做过产品,给出的东 ...

  9. PropertyGrid--基本功能

    一.引言 PropertyGrid是Visual Studio中新增的控件,顾名思义,其主要是用来显示和设置某一(或多个)对象的属性值的.其具体的实现主要是基于.Net中强大的反射机制.Propert ...

  10. Iframe和父窗口互调方法的集合

    1.子iframe里调用父级的方法:window.parent.document.   2.父级里调用子集iframe:window.frames["iframe_text"].d ...