1 Template模板模式

问题

在面向对象系统的分析与设计过程中经常会遇到这样一种情况:对于某一个业务逻辑(算法实现)在不同的对象中有不同的细节实现,但是逻辑(算法)的框架(或通用的应用算法)是相同的。Template 提供了这种情况的一个实现框架。

Template 模式是采用继承的方式实现这一点:将逻辑(算法)框架放在抽象基类中,并定义好细节的接口,子类中实现细节。Strategy 模式解决的是和 Template 模式类似的问题,但是Strategy 模式是将逻辑(算法)封装到一个类中,并采取组合(委托)的方式解决这个问题。

模式结构图

一个通用的 Template 模式的结构图为:

clip_image001.jpg

Template 模式实际上就是利用面向对象中多态的概念实现算法实现细节和高层接口的松耦合。可以看到 Template 模式采取的是继承方式实现这一点的,由于继承是一种强约束性的条件,因此也给Template 模式带来一些许多不方便的地方(有关这一点将在总结中展开)。

实现

Template

  1. #ifndef TEMPLATE_HPP_INCLUDED
  2. #define TEMPLATE_HPP_INCLUDED
  3. class AbstractClass
  4. {
  5. public:
  6. virtual ~AbstractClass(){};
  7. void templateMethod();
  8. protected:
  9. virtual void operation1()=0;
  10. virtual void operation2()=0;
  11. AbstractClass(){};
  12. };
  13. class SubAbstractClass1: public AbstractClass
  14. {
  15. public:
  16. SubAbstractClass1(){};
  17. ~SubAbstractClass1(){};
  18. protected:
  19. void operation1();
  20. void operation2();
  21. };
  22. class SubAbstractClass2: public AbstractClass
  23. {
  24. public:
  25. SubAbstractClass2(){};
  26. ~SubAbstractClass2(){};
  27. protected:
  28. void operation1();
  29. void operation2();
  30. };
  31. #endif // TEMPLATE_HPP_INCLUDED
  1. #include "Template.hpp"
  2. #include <iostream>
  3. using namespace std;
  4. void AbstractClass::templateMethod()
  5. {
  6. operation1();
  7. operation2();
  8. }
  9. void SubAbstractClass1::operation1()
  10. {
  11. cout<<"SubAbstractClass1::operation1()"<<endl;
  12. }
  13. void SubAbstractClass1::operation2()
  14. {
  15. cout<<"SubAbstractClass1::operation2()"<<endl;
  16. }
  17. void SubAbstractClass2::operation1()
  18. {
  19. cout<<"SubAbstractClass2::operation1()"<<endl;
  20. }
  21. void SubAbstractClass2::operation2()
  22. {
  23. cout<<"SubAbstractClass2::operation2()"<<endl;
  24. }

main.cpp

  1. #include <iostream>
  2. #include "Template.hpp"
  3. using namespace std;
  4. int main()
  5. {
  6. AbstractClass* p1=new SubAbstractClass1();
  7. AbstractClass* p2=new SubAbstractClass2();
  8. p1->templateMethod();
  9. p2->templateMethod();
  10. return 0;
  11. }

总结

Template 模式是很简单模式,但是也应用很广的模式。如上面的分析和实现中阐明的 Template 是采用继承的方式实现算法的异构。其关键是将通用算法(逻辑)封装起来,而将算法细节让子类实现(多态)。唯一注意的是我们将原语操作(细节算法)定义为保护(Protected)成员,只供模板方法调用(子类可以)

Template 模式获得一种反向控制结构效果,这也是面向对象系统的分析和设计中一个原则 DIP(依赖倒置:Dependency Inversion Principles)。其含义就是父类调用子类的操作(高层模块调用低层模块的操作),低层模块实现高层模块声明的接口。这样控制权在父类(高层模块),低层模块反而要依赖高层模块。

继承的强制性约束关系也让 Template 模式有不足的地方,我们可以看到对于ConcreteClass 类中的实现的原语方法 Primitive1(),是不能被别的类复用。假设我们要创建一个 AbstractClass 的变体 AnotherAbstractClass,并且两者只是通用算法不一样,其原语操作想复用 AbstractClass 的子类的实现。但是这是不可能实现的,因为 ConcreteClass 继承自 AbstractClass,也就继承了 AbstractClass 的通用算法,AnotherAbstractClass 是复用不了 ConcreteClass 的实现,因为后者不是继承自前者。

Template 模式暴露的问题也正是继承所固有的问题,Strategy 模式则通过组合(委托)来达到和 Template 模式类似的效果,其代价就是空间和时间上的代价,关于 Strategy 模式的详细讨论请参考 Strategy 模式解析。

2 Strategy策略模式

问题

Strategy 模式和 Template 模式要解决的问题是相同(类似)的,都是为了给业务逻辑(算法)具体实现和抽象接口之间的解耦。Strategy 模式将逻辑(算法)封装到一个类(Context)里面,通过组合的方式将具体算法的实现在组合对象中实现,再通过委托的方式将抽象接口的实现委托给组合对象实现。State 模式也有类似的功能,他们之间的区别将在总结中给出。

模式结构图

Strategy 模式典型的结构图为:

clip_image002.jpg
这里的关键就是将算法的逻辑抽象接口(DoAction)封装到一个类中(Context),再通过委托的方式将具体的算法实现委托给具体的 Strategy 类来实现(ConcreteStrategeA类)。

实现

Strategy

  1. #ifndef STRATEGY_HPP_INCLUDED
  2. #define STRATEGY_HPP_INCLUDED
  3. class Strategy
  4. {
  5. public:
  6. Strategy(){};
  7. virtual ~Strategy();
  8. virtual void AlgrithmInterface() = 0;
  9. };
  10. class ConcreteStrategyA:public Strategy
  11. {
  12. public:
  13. ConcreteStrategyA(){};
  14. virtual ~ConcreteStrategyA();
  15. void AlgrithmInterface();
  16. };
  17. class ConcreteStrategyB:public Strategy
  18. {
  19. public:
  20. ConcreteStrategyB(){};
  21. virtual ~ConcreteStrategyB();
  22. void AlgrithmInterface();
  23. };
  24. #endif // STRATEGY_HPP_INCLUDED
  1. #include "Strategy.hpp"
  2. #include <iostream>
  3. using namespace std;
  4. Strategy::~Strategy()
  5. {
  6. cout<<"~Strategy....."<<endl;
  7. }
  8. ConcreteStrategyA::~ConcreteStrategyA()
  9. {
  10. cout<<"~ConcreteStrategyA....."<<endl;
  11. }
  12. void ConcreteStrategyA::AlgrithmInterface()
  13. {
  14. cout<<"test ConcreteStrategyA....."<<endl;
  15. }
  16. ConcreteStrategyB::~ConcreteStrategyB()
  17. {
  18. cout<<"~ConcreteStrategyB....."<<endl;
  19. }
  20. void ConcreteStrategyB::AlgrithmInterface()
  21. {
  22. cout<<"test ConcreteStrategyB....."<<endl;
  23. }

Context

  1. #ifndef CONTEXT_HPP_INCLUDED
  2. #define CONTEXT_HPP_INCLUDED
  3. #include "Strategy.hpp"
  4. /**
  5. *这个类是Strategy模式的关键,也是Strategy模式和Template模式的根本区别所在。
  6. *Strategy通过“组合”(委托)方式实现算法(实现)的异构,而Template模式则采取的是继承的方式
  7. *这两个模式的区别也是继承和组合两种实现接口重用的方式的区别
  8. */
  9. class Context
  10. {
  11. public:
  12. Context(Strategy* stg);
  13. ~Context();
  14. void doAction();
  15. private:
  16. Strategy* _stg;
  17. };
  18. #endif // CONTEXT_HPP_INCLUDED
  1. #include "Context.hpp"
  2. Context::Context(Strategy* stg)
  3. {
  4. _stg=stg;
  5. }
  6. Context::~Context()
  7. {
  8. if(!_stg)
  9. delete _stg;
  10. }
  11. void Context::doAction()
  12. {
  13. _stg->AlgrithmInterface();
  14. }

main.cpp

  1. #include <iostream>
  2. #include "Context.hpp"
  3. using namespace std;
  4. int main()
  5. {
  6. Strategy* ps;
  7. ps = new ConcreteStrategyA();
  8. Context* pc = new Context(ps);
  9. pc->doAction();
  10. if (NULL != pc)
  11. delete pc;
  12. return 0;
  13. }

总结

可以看到 Strategy 模式和 Template 模式解决了类似的问题,也正如在 Template 模式中分析的,Strategy 模式和 Template 模式实际是实现一个抽象接口的两种方式:继承和组合之间的区别。要实现一个抽象接口,继承是一种方式:我们将抽象接口声明在基类中,将具体的实现放在具体子类中。组合(委托)是另外一种方式:我们将接口的实现放在被组合对象中,将抽象接口放在组合类中。这两种方式各有优缺点,先列出来:

继承

  • 优点
    1. 易于修改和扩展那些被复用的实现。
  • 缺点
    1. 破坏了封装性,继承中父类的实现细节暴露给子类了;
    2. “白盒”复用,原因在 1)中;
    3. 当父类的实现更改时,其所有子类将不得不随之改变
    4. 从父类继承而来的实现在运行期间不能改变(编译期间就已经确定了)。

组合:

  • 优点
    1. “黑盒”复用,因为被包含对象的内部细节对外是不可见的;
    2. 封装性好,原因为 1);
    3. 实现和抽象的依赖性很小(组合对象和被组合对象之间的依赖性小);
    4. 可以在运行期间动态定义实现(通过一个指向相同类型的指针,典型的是抽象基类的指针)。
  • 缺点
    1. 系统中对象过多。

从上面对比中我们可以看出,组合相比继承可以取得更好的效果,因此在面向对象的设计中的有一条很重要的原则就是:优先使用(对象)组合,而非(类)继承(Favor Composition Over Inheritance)。

实际上,继承是一种强制性很强的方式,因此也使得基类和具体子类之间的耦合性很强。例如在Template 模式中在 ConcreteClass1 中定义的原语操作别的类是不能够直接复用(除非你继承自 AbstractClass,具体分析请参看 Template 模式文档)。而组合(委托)的方式则有很小的耦合性,实现(具体实现)和接口(抽象接口)之间的依赖性很小,例如在本实现中,ConcreteStrategyA 的具体实现操作很容易被别的类复用,例如我们要定义另一个 Context 类 AnotherContext,只要组合一个指向 Strategy 的指针就可以很容易地复用 ConcreteStrategyA 的实现了。

我们在 Bridge 模式的问题和 Bridge 模式的分析中,正是说明了继承和组合之间的区别。请参看相应模式解析。

另外 Strategy 模式和State 模式也有相似之处,但是 State 模式注重的对象在不同的状态下不同的操作。两者之间的区别就是 State 模式中具体实现类中有一个指向 Context 的引用,而 Strategy 模式则没有。具体分析请参看相应的 State 模式分析中。

3 State状态机模式

问题

每个人、事物在不同的状态下会有不同表现(动作),而一个状态又会在不同的表现下转移到下一个不同的状态(State)。 简单的一个生活中的例子就是:地铁入口处,如果你放入正确的地铁票,门就会打开让你通过。在出口处也是验票,如果正确你就可以 ok,否则就不让你通过(如果你动作野蛮,或许会有报警(Alarm)。

有限状态自动机(FSM)也是一个典型的状态不同,对输入有不同的响应(状态转移)。通常我们在实现这类系统会使用到很多的 Switch/Case 语句,Case 某种状态,发生什么动作,Case 另外一种状态,则发生另外一种状态。但是这种实现方式至少有以下两个问题:

  • 当状态数目不是很多的时候,Switch/Case 可能可以搞定。但是当状态数目很多的时候(实际系统中也正是如此),维护一大组的 Switch/Case 语句将是一件异常困难并且容易出错的事情。
  • 状态逻辑和动作实现没有分离。在很多的系统实现中,动作的实现代码直接写在状态的逻辑当中。这带来的后果就是系统的扩展性和维护得不到保证。

模式结构图

State 模式就是被用来解决上面列出的两个问题的,在 State 模式中我们将状态逻辑和动作实现进行分离。当一个操作中要维护大量的 case 分支语句,并且这些分支依赖于对象的状态。State 模式将每一个分支都封装到独立的类中。State 模式典型的结构图为:

clip_image002-1577370098834.jpg

实现

state

  1. //state.h
  2. #ifndef _STATE_H_
  3. #define _STATE_H_
  4. class Context; //前置声明
  5. class State
  6. {
  7. public:
  8. State();
  9. virtual ~State();
  10. virtual void OperationInterface(Context* ) = 0;
  11. virtual void OperationChangeState(Context*) = 0;
  12. protected:
  13. bool ChangeState(Context* con,State* st);
  14. private:
  15. //bool ChangeState(Context* con,State* st);
  16. };
  17. class ConcreteStateA:public State
  18. {
  19. public:
  20. ConcreteStateA();
  21. virtual ~ConcreteStateA();
  22. virtual void OperationInterface(Context* );
  23. virtual void OperationChangeState(Context*);
  24. protected:
  25. private:
  26. };
  27. class ConcreteStateB:public State
  28. {
  29. public:
  30. ConcreteStateB();
  31. virtual ~ConcreteStateB();
  32. virtual void OperationInterface(Context* );
  33. virtual void OperationChangeState(Context*);
  34. protected:
  35. private:
  36. };
  37. #endif //~_STATE_H_
  1. //State.cpp
  2. #include "State.h"
  3. #include "Context.h"
  4. #include <iostream>
  5. using namespace std;
  6. State::State()
  7. {}
  8. State::~State()
  9. {}
  10. void State::OperationInterface(Context* con)
  11. {
  12. cout<<"State::.."<<endl;
  13. }
  14. bool State::ChangeState(Context* con,State* st)
  15. {
  16. con->ChangeState(st);
  17. return true;
  18. }
  19. void State::OperationChangeState(Context* con)
  20. {
  21. }
  22. ConcreteStateA::ConcreteStateA()
  23. { }
  24. ConcreteStateA::~ConcreteStateA()
  25. { }
  26. void ConcreteStateA::OperationInterface(Context* con)
  27. {
  28. cout<<"ConcreteStateA::OperationInterfa ce......"<<endl;
  29. }
  30. void ConcreteStateA::OperationChangeState(Contex t* con)
  31. {
  32. OperationInterface(con);
  33. this->ChangeState(con,new ConcreteStateB());
  34. }
  35. ConcreteStateB::ConcreteStateB()
  36. { }
  37. ConcreteStateB::~ConcreteStateB()
  38. { }
  39. void ConcreteStateB::OperationInterface(Context* con)
  40. {
  41. cout<<"ConcreteStateB::OperationInterfa ce......"<<endl;
  42. }
  43. void ConcreteStateB::OperationChangeState(Contex t* con)
  44. {
  45. OperationInterface(con);
  46. this->ChangeState(con,new ConcreteStateA());
  47. }

context

  1. //context.h
  2. #ifndef _CONTEXT_H_
  3. #define _CONTEXT_H_
  4. class State;
  5. class Context
  6. {
  7. public:
  8. Context();
  9. Context(State* state);
  10. ~Context();
  11. void OprationInterface();
  12. void OperationChangState();
  13. protected:
  14. friend class State; //表明在 State 类中可以访问 Context 类的 private 字段
  15. bool ChangeState(State* state);
  16. private:
  17. State* _state;
  18. };
  19. #endif //~_CONTEXT_H_
  1. //context.cpp
  2. #include "Context.h"
  3. #include "State.h"
  4. Context::Context()
  5. {
  6. }
  7. Context::Context(State* state)
  8. { this->_state = state;
  9. }
  10. Context::~Context()
  11. {
  12. delete _state;
  13. }
  14. void Context::OprationInterface()
  15. {
  16. _state->OperationInterface(this);
  17. }
  18. bool Context::ChangeState(State* state)
  19. {
  20. this->_state = state;
  21. return true;
  22. }
  23. void Context::OperationChangState()
  24. {
  25. _state->OperationChangeState(this);
  26. }

main.cpp

  1. //main.cpp
  2. #include "Context.h"
  3. #include "State.h"
  4. #include <iostream>
  5. using namespace std;
  6. int main(int argc,char* argv[])
  7. {
  8. State* st = new ConcreteStateA();
  9. Context* con = new Context(st);
  10. con->OprationInterface();
  11. con->OprationInterface();
  12. con->OprationInterface();
  13. if (con != NULL)
  14. delete con;
  15. if (st != NULL)
  16. st = NULL;
  17. return 0;
  18. }

State 模式在实现中,有两个关键点:

  • 将 State 声明为 Context 的友元类(friend class),其作用是让 State 模式访问 Context 的 protected 接口 ChangeSate()。
  • State 及其子类中的操作都将 Context*传入作为参数,其主要目的是 State 类可以通过这个指针调用 Context 中的方法(在本示例代码中没有体现)。这也是 State 模式和 Strategy 模式的最大区别在。

运行了示例代码后可以获得以下的结果:连续 3 次调用了 Context 的 OprationInterface()因为每次调用后状态都会改变(A-B-A),因此该动作随着 Context 的状态的转变而获得了不同的结果

总结

State 模式的应用也非常广泛,从最高层逻辑用户接口 GUI 到最底层的通讯协议(例如 GoF 在《设计模式》中就利用 State 模式模拟实现一个 TCP 连接的类。)都有其用武之地。

State 模式和 Strategy 模式又很大程度上的相似:它们都有一个 Context 类,都是通过委托(组合)给一个具有多个派生类的多态基类实现 Context 的算法逻辑。两者最大的差别就是 State 模式中派生类持有指向 Context 对象的引用,并通过这个引用调用 Context 中的方法,但在 Strategy 模式中就没有这种情况。因此可以说一个 State 实例同样是 Strategy 模式的一个实例,反之却不成立。实际上 State 模式和 Strategy 模式的区别还在于它们所关注的点不尽相同:State 模式主要是要适应对象对于状态改变时的不同处理策略的实现,而 Strategy 则主要是具体算法和实现接口的解耦(coupling),Strategy 模式中并没有状态的概念(虽然很多时候有可以被看作是状态的概念),并且更加不关心状态的改变了。

State 模式很好地实现了对象的状态逻辑和动作实现的分离,状态逻辑分布在 State 的派生类中实现,而动作实现则可以放在 Context 类中实现(这也是为什么 State 派生类需要拥有一个指向 Context 的指针)。这使得两者的变化相互独立,改变 State 的状态逻辑可以很容易复用 Context 的动作,也可以在不影响 State 派生类的前提下创建 Context 的子类来更改或替换动作实现。

State 模式问题主要是逻辑分散化,状态逻辑分布到了很多的 State 的子类中,很难看到整个的状态逻辑图,这也带来了代码的维护问题

4 Observer观察者模式

问题

Observer 模式应该可以说是应用 多、影响 广的模式之一,因为 Observer 的一个实例 Model/View/Control(MVC)结构在系统开发架构设计中有着很重要的地位和意义,MVC 实现了业务逻辑和表示层的解耦。个人也认为 Observer模式是软件开发过程中必须要掌握和使用的模式之一。在 MFC 中,Doc/View(文档视图结构)提供了实现 MVC 的框架结构。

在 Java 阵容中,Struts 则提供和 MFC 中 Doc/View 结构类似的实现 MVC 的框架。另外 Java 语言本身就提供了 Observer 模式的实现接口,这将在总结中给出。

当然,MVC 只是 Observer 模式的一个实例。Observer 模式要解决的问题为:建立一个一(Subject)对多(Observer)的依赖关系,并且做到当“一”变化的时候,依赖这个“一” 的多也能够同步改变。 常见的一个例子就是:对同一组数据进行统计分析时候,我们希望能够提供多种形式的表示(例如以表格进行统计显示、柱状图统计显示、百分比统计显示等)。这些表示都依赖于同一组数据,我们当然需要当数据改变的时候,所有的统计的显示都能够同时改变。Observer 模式就是解决了这一个问题。

模式结构图

Observer 模式典型的结构图为:

clip_image002-1577371462772.jpg

这里的目标 Subject 提供依赖于它的观察者 Observer 的注册(Attach)和注销(Detach)操作,并且提供了使得依赖于它的所有观察者同步的操作(Notify)。观察者 Observer 则提供一个 Update 操作,注意这里的 Observer 的 Update 操作并不在 Observer 改变了 Subject 目标状态的时候就对自己进行更新,这个更新操作要延迟到 Subject 对象发出 Notify 通知所有Observer 进行修改(调用 Update)。

实现

subject

  1. #ifndef SUBJECT_HPP_INCLUDED
  2. #define SUBJECT_HPP_INCLUDED
  3. #include <list>
  4. #include <string>
  5. using namespace std;
  6. typedef string State;
  7. class Observer;
  8. class Subject
  9. {
  10. public:
  11. virtual ~Subject(){};
  12. virtual void Attach(Observer* obv);
  13. virtual void detach(Observer* obv);
  14. virtual void notify();
  15. virtual void setState(const State& st);
  16. virtual State getState();
  17. Subject();
  18. private:
  19. list<Observer*>* _obvs;
  20. State _st;
  21. };
  22. #endif // SUBJECT_HPP_INCLUDED
  1. #include "Subject.hpp"
  2. #include "Observer.hpp"
  3. Subject::Subject()
  4. {
  5. _obvs=new list<Observer*>;
  6. _st='\0';
  7. }
  8. void Subject::Attach(Observer* obv)
  9. {
  10. _obvs->push_front(obv);
  11. }
  12. void Subject::detach(Observer* obv)
  13. {
  14. if(obv != 0)
  15. _obvs->remove(obv);
  16. }
  17. void Subject::notify()
  18. {
  19. //通知每一个观察者
  20. list<Observer*>::iterator it=_obvs->begin();
  21. for(;it != _obvs->end();it++)
  22. (*it)->update(_st);
  23. }
  24. void Subject::setState(const State& st)
  25. {
  26. _st=st;
  27. }
  28. State Subject::getState()
  29. {
  30. return _st;
  31. }

Observer

  1. #include <string>
  2. #include "Subject.hpp"
  3. using namespace std;
  4. class Observer
  5. {
  6. public:
  7. Observer();
  8. ~Observer();
  9. void update(State st);
  10. void printInfo();
  11. private:
  12. State _st;
  13. };
  1. #include "Observer.hpp"
  2. #include <iostream>
  3. Observer::Observer()
  4. {
  5. _st='\0';
  6. }
  7. Observer::~Observer()
  8. {
  9. }
  10. void Observer::printInfo()
  11. {
  12. cout<<"Observer......"<<endl;
  13. }
  14. void Observer::update(State st)
  15. {
  16. _st=st;
  17. printInfo();
  18. }

main.cpp

  1. #include <iostream>
  2. #include "Subject.hpp"
  3. #include "Observer.hpp"
  4. using namespace std;
  5. int main()
  6. {
  7. Subject* sub=new Subject();
  8. Observer* obv=new Observer();
  9. sub->Attach(obv);//注册观察者
  10. sub->setState("old");
  11. sub->notify();//通知观察者
  12. return 0;
  13. }

在 Observer 模式的实现中,Subject 维护一个 list 作为存储其所有观察者的容器。每当 调用Notify操作就遍历list中的Observer对象,并广播通知改变状态(调用Observer的Update操作)。目标的状态 state 可以由 Subject 自己改变(示例),也可以由 Observer 的某个操作引起 state 的改变(可调用 Subject 的 SetState 操作)。Notify 操作可以由 Subject 目标主动广播(示例),也可以由 Observer 观察者来调用(因为 Observer 维护一个指向 Subject 的指针)。运行示例程序,可以看到当 Subject 处于状态“old”时候,依赖于它的两个观察者都显示“old”,当目标状态改变为“new”的时候,依赖于它的两个观察者也都改变为“new”。

总结

Observer 是影响极为深远的模式之一,也是在大型系统开发过程中要用到的模式之一。除了 MFC,Struts 提供了 MVC 的实现框架,在 Java 语言中还提供了专门的接口实现 Observer模式:通过专门的类 ObservableObserver 接口来实现 MVC 编程模式,其 UML 图可以表示为:

clip_image001-1577371754593.jpg

这里的 Observer 就是观察者,Observable 则充当目标 Subject 的角色。

Observer 模式也称为发布-订阅(publish-subscribe),目标就是通知的发布者,观察者则是通知的订阅者(接受通知)。

5 Memento备忘录模式

问题

没有人想犯错误,但是没有人能够不犯错误。犯了错误一般只能改过,却很难改正(恢复)。世界上没有后悔药,但是我们在进行软件系统的设计时候是要给用户后悔的权利(实际上可能也是用户要求的权利),我们对一些关键性的操作肯定需要提供诸如撤销(Undo)的操作。那这个后悔药就是 Memento 模式提供的。

模式结构图

Memento 模式的关键就是要在不破坏封装的前提下,捕获并保存一个类的内部状态,这样就可以利用该保存的状态实施恢复操作。为了达到这个目标,可以在后面的实现中看到我们采取了一定语言支持的技术。Memento 模式的典型结构图为:

clip_image001-1577371992329.jpg

实现

Memento

  1. #ifndef MEMENTO_HPP_INCLUDED
  2. #define MEMENTO_HPP_INCLUDED
  3. #include "Originator.hpp"
  4. #include <string>
  5. using namespace std;
  6. class Memento
  7. {
  8. private:
  9. string _str;
  10. //将Originator设置为友元类,可以访问Memento构造函数
  11. friend class Originator;
  12. Memento(){};
  13. Memento(const string& str)
  14. {
  15. _str=str;
  16. };
  17. ~Memento(){};
  18. void setState(const string& str)
  19. {
  20. _str=str;
  21. };
  22. string getState()
  23. {
  24. return _str;
  25. };
  26. };
  27. #endif // MEMENTO_HPP_INCLUDED

Originator

  1. #ifndef ORIGINATOR_HPP_INCLUDED
  2. #define ORIGINATOR_HPP_INCLUDED
  3. #include <string>
  4. #include "Memento.hpp"
  5. using namespace std;
  6. class Originator
  7. {
  8. public:
  9. Originator();
  10. Originator(const string& str);
  11. ~Originator(){};
  12. Memento* createMemento();
  13. void restoreToMemento(Memento* mt);
  14. string getState()
  15. {
  16. return _str;
  17. };
  18. void setState(const string& str)
  19. {
  20. _str=str;
  21. };
  22. void printState();
  23. private:
  24. string _str;
  25. };
  26. #endif // ORIGINATOR_HPP_INCLUDED
  1. #include "Originator.hpp"
  2. #include <iostream>
  3. Originator::Originator()
  4. {
  5. _str='\0';
  6. }
  7. Originator::Originator(const string& str)
  8. {
  9. _str=str;
  10. }
  11. Memento* Originator::createMemento()
  12. {
  13. return new Memento(_str);
  14. }
  15. void Originator::restoreToMemento(Memento* men)
  16. {
  17. _str=men->getState();
  18. }
  19. void Originator::printState()
  20. {
  21. cout<<"now state is "<<_str<<endl;
  22. }

main.cpp

  1. #include <iostream>
  2. #include "Originator.hpp"
  3. #include "Memento.hpp"
  4. using namespace std;
  5. int main()
  6. {
  7. Originator* o=new Originator();
  8. //设置状态
  9. o->setState("old");
  10. o->printState();
  11. //设置备忘录
  12. Memento* men=o->createMemento();
  13. //设置新状态
  14. o->setState("new");
  15. o->printState();
  16. //恢复状态
  17. o->restoreToMemento(men);
  18. o->printState();
  19. return 0;
  20. }

总结

Memento 模式的关键就是friend class Originator;我们可以看到,Memento 的接口都声明为 private,而将 Originator 声明为 Memento 的友元类。我们将 Originator 的状态保存在Memento 类中,而将 Memento 接口 private 起来,也就达到了封装的功效。

在 Originator 类中我们提供了方法让用户后悔:RestoreToMemento(Memento* mt);我们可以通过这个接口让用户后悔。在测试程序中,我们演示了这一点:Originator 的状态由 old 变为 new 后又回到了 old。

在 Command 模式中,Memento 模式经常被用来维护可以撤销(Undo)操作的状态。这一点将在 Command 模式具体说明。

6 Mediator终结者模式

问题

在面向对象系统的设计和开发过程中,对象之间的交互和通信是最为常见的情况,因为对象间的交互本身就是一种通信。在系统比较小的时候,可能对象间的通信不是很多、对象也比较少,我们可以直接硬编码到各个对象的方法中。但是当系统规模变大,对象的量变引起系统复杂度的急剧增加,对象间的通信也变得越来越复杂,这时候我们就要提供一个专门处理对象间交互和通信的类,这个中介者就是 Mediator 模式

Mediator 模式提供将对象间的交互和通讯封装在一个类中,各个对象间的通信不必显势去声明和引用,大大降低了系统的复杂性能(了解一个对象总比深入熟悉 n 个对象要好)。另外 Mediator 模式还带来了系统对象间的松耦合,这些将在总结中详细给出。

模式结构图

Mediator 模式典型的结构图为:

clip_image002-1577372363231.jpg

Mediator 模式中,每个 Colleague 维护一个 Mediator,当要进行交互,例如图中ConcreteColleagueA 和 ConcreteColleagueB 之间的交互就可以通过 ConcreteMediator 提供的 DoActionFromAtoB 来处理,ConcreteColleagueA 和 ConcreteColleagueB 不必维护对各自的引用,甚至它们也不知道各个的存在。Mediator 通过这种方式将多对多的通信简化为了一(Mediator)对多(Colleague)的通信。

实现

Colleage

  1. #ifndef COLLEAGE_HPP_INCLUDED
  2. #define COLLEAGE_HPP_INCLUDED
  3. #include <string>
  4. #include <iostream>
  5. using namespace std;
  6. class Mediator;
  7. class Colleage
  8. {
  9. public:
  10. Colleage(Mediator* md);
  11. virtual ~Colleage(){};
  12. virtual void action()=0;
  13. void setState(const string& str)
  14. {
  15. _str=str;
  16. };
  17. string getState()
  18. {
  19. return _str;
  20. };
  21. protected:
  22. string _str;
  23. Mediator* _md;
  24. };
  25. class SubColleageA: public Colleage
  26. {
  27. public:
  28. SubColleageA(Mediator* md):Colleage(md){};
  29. void action();
  30. };
  31. class SubColleageB: public Colleage
  32. {
  33. public:
  34. SubColleageB(Mediator* md):Colleage(md){};
  35. void action();
  36. };
  37. #endif // COLLEAGE_HPP_INCLUDED
  1. #include "Colleage.hpp"
  2. #include "Mediator.hpp"
  3. Colleage::Colleage(Mediator* md)
  4. {
  5. _md=md;
  6. }
  7. void SubColleageA::action()
  8. {
  9. _md->doActionFromAtoB();
  10. cout<<"state of A: "<<getState()<<endl;
  11. }
  12. void SubColleageB::action()
  13. {
  14. _md->doActionFromBtoA();
  15. cout<<"state of B: "<<getState()<<endl;
  16. };

Mediator

  1. #ifndef MEDIATOR_HPP_INCLUDED
  2. #define MEDIATOR_HPP_INCLUDED
  3. #include "Colleage.hpp"
  4. class Mediator
  5. {
  6. public:
  7. Mediator(){};
  8. ~Mediator(){};
  9. void doActionFromAtoB();
  10. void doActionFromBtoA();
  11. void setColleage(Colleage* a, Colleage* b);
  12. private:
  13. Colleage* _a;
  14. Colleage* _b;
  15. };
  16. #endif // MEDIATOR_HPP_INCLUDED
  1. #include "Mediator.hpp"
  2. void Mediator::doActionFromAtoB()
  3. {
  4. _b->setState(_a->getState());
  5. }
  6. void Mediator::doActionFromBtoA()
  7. {
  8. _a->setState(_b->getState());
  9. }
  10. void Mediator::setColleage(Colleage* a, Colleage* b)
  11. {
  12. _a=a;
  13. _b=b;
  14. }

main.cpp

  1. #include <iostream>
  2. #include "Mediator.hpp"
  3. #include "Colleage.hpp"
  4. using namespace std;
  5. int main()
  6. {
  7. Mediator* media=new Mediator();
  8. Colleage* a=new SubColleageA(media);
  9. Colleage* b=new SubColleageB(media);
  10. media->setColleage(a,b);
  11. a->setState("Old");
  12. b->setState("new");
  13. a->action();
  14. b->action();
  15. return 0;
  16. }

总结

Mediator 模式的实现关键就是将对象 Colleague 之间的通信封装到一个类种单独处理,为了模拟Mediator 模式的功能,这里给每个 Colleague 对象一个 string 型别以记录其状态,并通过状态改变来演示对象之间的交互和通信。这里主要就 Mediator 的示例运行结果给出分析:

  1. 将 ConcreteColleageA 对象设置状态“old”,ConcreteColleageB 也设置状态“old”;
  2. ConcreteColleageA 对象改变状态,并在 Action 中和 ConcreteColleageB 对象进行通信,并改变ConcreteColleageB 对象的状态为“new”;
  3. ConcreteColleageB 对象改变状态,并在 Action 中和 ConcreteColleageA 对象进行通信,并改变ConcreteColleageA 对象的状态为“new”;

注意到,两个 Colleague 对象并不知道它交互的对象,并且也不是显示地处理交互过程,这一切都是通过 Mediator 对象完成的,示例程序运行的结果也正是证明了这一点。

Mediator 模式是一种很有用并且很常用的模式,它通过将对象间的通信封装到一个类中,将多对多的通信转化为一对多的通信,降低了系统的复杂性。Mediator 还获得系统解耦的特性,通过 Mediator,各个 Colleague 就不必维护各自通信的对象和通信协议,降低了系统的耦合性,Mediator 和各个 Colleague 就可以相互独立地修改了。

Mediator 模式还有一个很显著额特点就是将控制集中,集中的优点就是便于管理,也正式符合了 OO 设计中的每个类的职责要单一和集中的原则。

7 Command命令模式

问题

Command 模式通过将请求封装到一个对象(Command)中,并将请求的接受者存放到具体的ConcreteCommand 类中(Receiver)中,从而实现调用操作的对象和操作的具体实现者之间的解耦。

模式结构图

Command 模式的典型结构图为:

clip_image002-1577372770271.jpg
Command 模式结构图中,将请求的接收者(处理者)放到 Command 的具体子类ConcreteCommand 中,当请求到来时(Invoker 发出 Invoke 消息激活 Command 对象),ConcreteCommand 将处理请求交给 Receiver 对象进行处理。

实现

receiver

  1. #ifndef RECEIVER_HPP_INCLUDED
  2. #define RECEIVER_HPP_INCLUDED
  3. #include <iostream>
  4. using namespace std;
  5. class Receiver
  6. {
  7. public:
  8. Receiver(){};
  9. ~Receiver(){};
  10. void action()
  11. {
  12. cout<<"received the action..."<<endl;
  13. };
  14. };
  15. #endif // RECEIVER_HPP_INCLUDED

command

  1. #ifndef COMMAND_HPP_INCLUDED
  2. #define COMMAND_HPP_INCLUDED
  3. class Receiver;
  4. typedef void (Receiver::* Action)();//定义函数指针
  5. class Command
  6. {
  7. public:
  8. Command(Receiver* r)
  9. {
  10. _r=r;
  11. };
  12. Command(Receiver* r, Action act)
  13. {
  14. _r=r;
  15. _act=act;
  16. }
  17. ~Command()
  18. {
  19. if(_r)
  20. delete _r;
  21. };
  22. void execute()
  23. {
  24. _r->action();//第一种通知方式,调用接受者函数处理该消息
  25. };
  26. void execute2()
  27. {
  28. //第二种方式,调用callback方法处理
  29. (_r->*_act)();
  30. };
  31. private:
  32. Receiver* _r;
  33. Action _act;
  34. };
  35. #endif // COMMAND_HPP_INCLUDED

main.cpp

  1. #include <iostream>
  2. #include "Receiver.hpp"
  3. #include "Command.hpp"
  4. using namespace std;
  5. int main()
  6. {
  7. Receiver* r=new Receiver();
  8. Command* cmd=new Command(r);
  9. cmd->execute();
  10. Command* cmd2=new Command(r,&Receiver::action);
  11. cmd2->execute2();
  12. return 0;
  13. }

总结

Command 模式在实现的实现和思想都很简单,其关键就是将一个请求封装到一个类中(Command),再提供处理对象(Receiver), 后 Command 命令由 Invoker 激活。另外,我们可以将请求接收者的处理抽象出来作为参数传给 Command 对象,实际也就是回调的机制(Callback)来实现这一点,也就是说将处理操作方法地址(在对象内部)通过参数传递给 Command 对象,Command 对象在适当的时候(Invoke 激活的时候)再调用该函数。

Command 模式也十分常见,并且威力不小。实际上,Command 模式关键就是提供一个抽象的Command 类,并将执行操作封装到 Command 类接口中,Command 类中一般就是只是一些接口的集合,并不包含任何的数据属性(当然在示例代码中,我们的 Command 类有一个处理操作的 Receiver 类的引用,但是其作用也仅仅就是为了实现这个 Command 的 Excute 接口)。这种方式在是纯正的面向对象设计者 为鄙视的设计方式,就像 OO 设计新手做系统设计的时候,仅仅将 Class 作为一个关键字,将C 种的全局函数找一个类封装起来就以为是完成了面向对象的设计。

但是世界上的事情不是绝对的,上面提到的方式在 OO 设计种绝大部分的时候可能是一个不成熟的体现,但是在 Command 模式中却是起到了很好的效果。主要体现在:

  • Command 模式将调用操作的对象和知道如何实现该操作的对象解耦。在上面 Command 的结构图中,Invoker 对象根本就不知道具体的是那个对象在处理 Excute操作(当然要知道是 Command 类别的对象,也仅此而已)。
  • 在Command 要增加新的处理操作对象很容易,我们可以通过创建新的继承自Command 的子类来实现这一点。
  • Command 模式可以和 Memento 模式结合起来,支持取消的操作。

8 Visitor访问者模式

问题

在面向对象系统的开发和设计过程,经常会遇到一种情况就是需求变更(Requirement Changing),经常我们做好的一个设计、实现了一个系统原型,咱们的客户又会有了新的需求。我们又因此不得不去修改已有的设计, 常见就是解决方案就是给已经设计、实现好的类添加新的方法去实现客户新的需求,这样就陷入了设计变更的梦魇:不停地打补丁,其带来的后果就是设计根本就不可能封闭、编译永远都是整个系统代码。

Visitor 模式则提供了一种解决方案:将更新(变更)封装到一个类中(访问操作),并由待更改类提供一个接收接口,则可达到效果。

模式结构图

Visitor 模式典型的结构图为:

clip_image002-1577417159284.jpg

Visitor 模式在不破坏类的前提下,为类提供增加新的新操作。Visitor 模式的关键是双分派(Double-Dispatch)的技术(双分派意味着执行的操作将取决于请求的种类和接收者的类型)。C++语言支持的是单分派

在 Visitor 模式中 Accept()操作是一个双分派的操作。具体调用哪一个具体的 Accept()操作,有两个决定因素:

  • Element 的类型。因为 Accept()是多态的操作,需要具体的 Element 类型的子类才可以决定到底调用哪一个 Accept()实现;
  • Visitor 的类型。Accept()操作有一个参数(Visitor* vis),要决定了实际传进来的 Visitor 的实际类别才可以决定具体是调用哪个 VisitConcrete()实现。

实现

visitor

  1. #ifndef VISITOR_HPP_INCLUDED
  2. #define VISITOR_HPP_INCLUDED
  3. class ConcreteElementA;
  4. class ConcreteElementB;
  5. class Element;
  6. class Visitor
  7. {
  8. public:
  9. ~Visitor(){};
  10. virtual void visitElementA(Element*)=0;
  11. virtual void visitElementB(Element*)=0;
  12. protected:
  13. Visitor(){};
  14. };
  15. class SubVisitorA:public Visitor
  16. {
  17. public:
  18. SubVisitorA(){};
  19. ~SubVisitorA(){};
  20. void visitElementA(Element*);
  21. void visitElementB(Element*);
  22. };
  23. class SubVisitorB:public Visitor
  24. {
  25. public:
  26. SubVisitorB(){};
  27. ~SubVisitorB(){};
  28. void visitElementA(Element*);
  29. void visitElementB(Element*);
  30. };
  31. #endif // VISITOR_HPP_INCLUDED
  1. #include "Element.hpp"
  2. #include "Visitor.hpp"
  3. #include <iostream>
  4. using namespace std;
  5. void SubVisitorA::visitElementA(Element* ele)
  6. {
  7. cout<<"SubVisitorA I will visit Element A..."<<endl;
  8. }
  9. void SubVisitorA::visitElementB(Element* ele)
  10. {
  11. cout<<"SubVisitorA I will visit Element B..."<<endl;
  12. }
  13. void SubVisitorB::visitElementA(Element* ele)
  14. {
  15. cout<<"SubVisitorB I will visit Element A..."<<endl;
  16. }
  17. void SubVisitorB::visitElementB(Element* ele)
  18. {
  19. cout<<"SubVisitorB I will visit Element B..."<<endl;
  20. }

element

  1. #ifndef ELEMENT_HPP_INCLUDED
  2. #define ELEMENT_HPP_INCLUDED
  3. class Visitor;
  4. class Element
  5. {
  6. public:
  7. virtual ~Element(){};
  8. virtual void accpet(Visitor* vis)=0;
  9. protected:
  10. Element(){};
  11. };
  12. class ConcreteElementA:public Element
  13. {
  14. public:
  15. ConcreteElementA(){};
  16. ~ConcreteElementA(){};
  17. void accpet(Visitor* vis);
  18. };
  19. class ConcreteElementB:public Element
  20. {
  21. public:
  22. ConcreteElementB(){};
  23. ~ConcreteElementB(){};
  24. void accpet(Visitor* vis);
  25. };
  26. #endif // ELEMENT_HPP_INCLUDED
  1. #include "Element.hpp"
  2. #include "Visitor.hpp"
  3. #include <iostream>
  4. using namespace std;
  5. void ConcreteElementA::accpet(Visitor* vis)
  6. {
  7. vis->visitElementA(this);
  8. cout<<"visiting element A..."<<endl;
  9. }
  10. void ConcreteElementB::accpet(Visitor* vis)
  11. {
  12. vis->visitElementB(this);
  13. cout<<"visiting element B..."<<endl;
  14. }

main.cpp

  1. #include <iostream>
  2. #include "Element.hpp"
  3. #include "Visitor.hpp"
  4. using namespace std;
  5. int main()
  6. {
  7. Visitor* v=new SubVisitorA();
  8. Element* e=new ConcreteElementA();
  9. e->accpet(v);
  10. return 0;
  11. }

总结

Visitor 模式的实现过程中有以下的地方要注意: Visitor 类中的 Visit()操作的实现。

  • 这里我们可以向 Element 类仅仅提供一个接口 Visit(),而在 Accept()实现中具体调用哪一个 Visit()操作则通过函数重载(overload)的方式实现:我们提供 Visit ()的两个重载版本
    • Visit(ConcreteElementA* elmA)
    • Visit(ConcreteElementB* elmB)。
  • C++中我们还可以通过 RTTI(运行时类型识别:Runtime type identification)来实现,即我们只提供一个 Visit()函数体,传入的参数为 Element*型别参数 ,然后用 RTTI 决定具体是哪一类的 ConcreteElement 参数,再决定具体要对哪个具体类施加什么样的具体操作。(RTTI 给接口带来了简单一致性,但是付出的代价是时间(RTTI 的实现)和代码的 Hard 编码(要进行强制转换))。

有时候我们需要为 Element 提供更多的修改,这样我们就可以通过为 Element 提供一系列的 Visitor 模式可以使得 Element 在不修改自己的同时增加新的操作,但是这也带来了至少以下的两个显著问题:

  • 破坏了封装性。Visitor 模式要求 Visitor 可以从外部修改 Element 对象的状态,这一般通过两个方式来实现,但是无论那种情况,特别是后者都将是破坏了封装性原则(实际上就是 C++的 friend 机制得到了很多的面向对象专家的诟病):
    • Element 提供足够的 public 接口,使得 Visitor 可以通过调用这些接口达到修改 Element 状态的目的
    • Element 暴露更多的细节给 Visitor,或者让 Element 提供 public 的实现给 Visitor(当然也给了系统中其他的对象),或者将 Visitor 声明为 Element 的 friend 类,仅将细节暴露给Visitor。
  • ConcreteElement 的扩展很困难:每增加一个 Element 的子类,就要修改 Visitor 的接口,使得可以提供给这个新增加的子类的访问机制。从上面我们可以看到,或者增加一个用于处理新增类的Visit()接口,或者重载一个处理新增类的 Visit()操作,或者要修改 RTTI 方式实现的 Visit()实现。无论那种方式都给扩展新的 Element 子类带来了困难。

9 Chain of Responsibility责任链模式

问题

熟悉 VC/MFC 的都知道,VC 是“基于消息,事件驱动”,消息在 VC 开发中起着举足轻重的作用。在 MFC 中,消息是通过一个向上递交的方式进行处理,例如一个WM_COMMAND 消息的处理流程可能为:

  1. MDI 主窗口(CMDIFrameWnd)收到命令消息 WMCOMMAND,其 ID 位 ID×××;
  2. MDI 主窗口将消息传给当前活动的 MDI 子窗口(CMDIChildWnd);
  3. MDI 子窗口给自己的子窗口(View)一个处理机会,将消息交给 View;
  4. View 检查自己 Message Map;
  5. 如果 View 没有发现处理该消息的程序,则将该消息传给其对应的 Document 对象;否则 View 处理,消息流程结束。
  6. Document 检查自己 Message Map,如果没有该消息的处理程序,则将该消息传给其对象的 DocumentTemplate 处理;否则自己处理,消息流程结束;
  7. 如果在6中消息没有得到处理,则将消息返回给 View;
  8. view 再传回给 MDI 子窗口;
  9. MDI 子窗口将该消息传给 CwinApp 对象,CwinApp 为所有无主的消息提供了处理。

MFC 提供了消息的处理的链式处理策略,处理消息的请求将沿着预先定义好的路径依次进行处理。消息的发送者并不知道该消息最后是由那个具体对象处理的,当然它也无须也不想知道,但是结构是该消息被某个对象处理了,或者一直到一个终极的对象进行处理了。

Chain of Responsibility 模式描述其实就是这样一类问题将可能处理一个请求的对象链接成一个链,并将请求在这个链上传递,直到有对象处理该请求(可能需要提供一个默认处理所有请求的类,例如 MFC 中的 CwinApp 类)

模式结构图

Chain of Responsibility 模式典型的结构图为:

clip_image002-1577419675279.jpg

Chain of Responsibility 模式中 ConcreteHandler 将自己的后继对象(向下传递消息的对象)记录在自己的后继表中,当一个请求到来时,ConcreteHandler 会先检查看自己有没有匹配的处理程序,如果有就自己处理,否则传递给它的后继。当然这里示例程序中为了简化,ConcreteHandler 只是简单的检查看自己有没有后继,有的话将请求传递给后继进行处理,没有的话就自己处理。

实现

handle

  1. #ifndef HANDLE_HPP_INCLUDED
  2. #define HANDLE_HPP_INCLUDED
  3. class Handle
  4. {
  5. public:
  6. virtual ~Handle()
  7. {
  8. delete _succ;
  9. };
  10. virtual void handleRequest()=0;
  11. void setSuccessor(Handle* succ)
  12. {
  13. _succ=succ;
  14. };
  15. Handle* getSuccessor()
  16. {
  17. return _succ;
  18. };
  19. protected:
  20. Handle()
  21. {
  22. _succ=0;
  23. };
  24. Handle(Handle* succ)
  25. {
  26. _succ=succ;
  27. };
  28. private:
  29. Handle* _succ;
  30. };
  31. class ConcreteHandleA:public Handle
  32. {
  33. public:
  34. ConcreteHandleA(){};
  35. ~ConcreteHandleA(){};
  36. ConcreteHandleA(Handle* succ):Handle(succ){};
  37. void handleRequest();
  38. };
  39. class ConcreteHandleB:public Handle
  40. {
  41. public:
  42. ConcreteHandleB(){};
  43. ~ConcreteHandleB(){};
  44. ConcreteHandleB(Handle* succ):Handle(succ){};
  45. void handleRequest();
  46. };
  47. #endif // HANDLE_HPP_INCLUDED
  1. #include "Handle.hpp"
  2. #include <iostream>
  3. using namespace std;
  4. void ConcreteHandleA::handleRequest()
  5. {
  6. if(getSuccessor() != 0)
  7. {
  8. cout<<"ConcreteHandleA,将操作传递给后继对象处理..."<<endl;
  9. getSuccessor()->handleRequest();
  10. }
  11. else
  12. {
  13. cout<<"ConcreteHandleA,没有后继对象处理,自己处理..."<<endl;
  14. }
  15. }
  16. void ConcreteHandleB::handleRequest()
  17. {
  18. if(getSuccessor() != 0)
  19. {
  20. cout<<"ConcreteHandleB 将操作传递给后继对象处理..."<<endl;
  21. getSuccessor()->handleRequest();
  22. }
  23. else
  24. {
  25. cout<<"ConcreteHandleB 没有后继对象处理,自己处理..."<<endl;
  26. }
  27. }

main.cpp

  1. #include <iostream>
  2. #include "Handle.hpp"
  3. using namespace std;
  4. int main()
  5. {
  6. Handle* h1=new ConcreteHandleA();
  7. Handle* h2=new ConcreteHandleB();
  8. //设置h1的后继对象为h2
  9. h1->setSuccessor(h2);
  10. h1->handleRequest();
  11. return 0;
  12. }

总结

Chain of Responsibility 模式的示例代码实现很简单,这里就其测试结果给出说明: ConcreteHandleA 的对象和 h1 拥有一个后继 ConcreteHandleB 的对象 h2,当一个请求到来时候,h1 检查看自己有后继,于是 h1 直接将请求传递给其后继 h2 进行处理,h2 因为没有后继,当请求到来时候,就只有自己提供响应了。于是程序的输出为:

  1. ConcreteHandleA 我把处理权给后继节点…..;
  2. ConcreteHandleB 没有后继了,我必须自己处理….

Chain of Responsibility 模式的最大的一个有点就是给系统降低了耦合性,请求的发送者完全不必知道该请求会被哪个应答对象处理,极大地降低了系统的耦合性

10 Iterator迭代器模式

问题

Iterator 模式应该是最为熟悉的模式了, 简单的证明就是在实现 Composite 模式、 Flyweight 模式、Observer 模式中就直接用到了 STL 提供的 Iterator 来遍历 Vector 或者 List 数据结构。

Iterator 模式也正是用来解决对一个聚合对象的遍历问题,将对聚合的遍历封装到一个类中进行,这样就避免了暴露这个聚合对象的内部表示的可能。

模式结构图

Iterator 模式典型的结构图为:

clip_image002-1577419909540.jpg

Iterator 模式中定义的对外接口可以视客户成员的便捷定义,但是基本的接口在图中的Iterator 中已经给出了(参考 STL 的 Iterator 就知道了)

实现

collection

  1. #ifndef COLLECTION_HPP_INCLUDED
  2. #define COLLECTION_HPP_INCLUDED
  3. const int SIZE=3;
  4. class Iterator;
  5. class Collection
  6. {
  7. public:
  8. Collection();
  9. ~Collection(){};
  10. Iterator* createIterator();
  11. private:
  12. friend class Iterator;
  13. int lst[SIZE];
  14. int getItem(int index);
  15. };
  16. #endif // COLLECTION_HPP_INCLUDED
  1. #include "Collection.hpp"
  2. #include "Iterator.hpp"
  3. Collection::Collection()
  4. {
  5. for(int i=0;i<SIZE; i++)
  6. lst[i]=i;
  7. }
  8. Iterator* Collection::createIterator()
  9. {
  10. return new Iterator(this);
  11. }
  12. int Collection::getItem(int index)
  13. {
  14. if(index < SIZE)
  15. return lst[index];
  16. else
  17. return -1;
  18. }

iterator

  1. #ifndef ITERATOR_HPP_INCLUDED
  2. #define ITERATOR_HPP_INCLUDED
  3. class Collection;
  4. class Iterator
  5. {
  6. public:
  7. Iterator(){};
  8. Iterator(Collection* c, int idx=0);
  9. void first();
  10. void next();
  11. bool isDone();
  12. int currentItem();
  13. private:
  14. Collection* _c;
  15. int _idx;
  16. };
  17. #endif // ITERATOR_HPP_INCLUDED
  1. #include "Collection.hpp"
  2. #include "Iterator.hpp"
  3. Iterator::Iterator(Collection* c, int idx)
  4. {
  5. _c=c;
  6. _idx=idx;
  7. }
  8. void Iterator::first()
  9. {
  10. _idx=0;
  11. }
  12. void Iterator::next()
  13. {
  14. if(_idx < SIZE)
  15. _idx++;
  16. }
  17. bool Iterator::isDone()
  18. {
  19. return (_idx == SIZE);
  20. }
  21. int Iterator::currentItem()
  22. {
  23. return _c->getItem(_idx);
  24. }

main.cpp

  1. #include <iostream>
  2. #include "Collection.hpp"
  3. #include "Iterator.hpp"
  4. using namespace std;
  5. int main()
  6. {
  7. Collection* c=new Collection();
  8. Iterator* I=c->createIterator();
  9. for(;!(I->isDone());I->next())
  10. {
  11. cout<<I->currentItem()<<endl;
  12. }
  13. return 0;
  14. }

总结

Iterator 模式的应用很常见,我们在开发中就经常会用到 STL 中预定义好的 Iterator 来对STL 类进行遍历(Vector、Set 等)

11 Interpreter解释器模式

问题

一些应用提供了内建(Build-In)的脚本或者宏语言来让用户可以定义他们能够在系统中进行的操作。Interpreter 模式的目的就是使用一个解释器为用户提供一个一门定义语言的语法表示的解释器,然后通过这个解释器来解释语言中的句子

模式结构图

Interpreter 模式典型的结构图为:

clip_image002-1577420182848.jpg

Interpreter 模式中,提供了 TerminalExpression 和 NonterminalExpression 两种表达式的解释方式,Context 类用于为解释过程提供一些附加的信息(例如全局的信息)

实现

context

  1. class Context
  2. {
  3. public:
  4. Context() {};
  5. ~Context() {};
  6. };

interpreter

  1. #ifndef INTERPRETER_HPP_INCLUDED
  2. #define INTERPRETER_HPP_INCLUDED
  3. #include <string>
  4. using namespace std;
  5. class AbstractExpression
  6. {
  7. public:
  8. virtual ~AbstractExpression();
  9. virtual void Interpret(const Context& c);
  10. protected:
  11. AbstractExpression();
  12. private:
  13. };
  14. class TerminalExpression:public AbstractExpression
  15. {
  16. public:
  17. TerminalExpression(const string& statement);
  18. ~ TerminalExpression();
  19. void Interpret(const Context& c);
  20. protected:
  21. private:
  22. string _statement;
  23. };
  24. class NonterminalExpression:public AbstractExpression
  25. {
  26. public:
  27. NonterminalExpression(AbstractExpression* expression,int times);
  28. ~ NonterminalExpression();
  29. void Interpret(const Context& c);
  30. protected:
  31. private:
  32. AbstractExpression* _expression;
  33. int _times;
  34. };
  35. #endif // INTERPRETER_HPP_INCLUDED
  1. #include "Interpreter.hpp"
  2. #include <iostream>
  3. using namespace std;
  4. AbstractExpression::AbstractExpression()
  5. {
  6. }
  7. AbstractExpression::~AbstractExpression()
  8. {
  9. }
  10. void AbstractExpression::Interpret(const Context& c)
  11. {
  12. }
  13. TerminalExpression::TerminalExpression(const string& statement)
  14. {
  15. this->_statement = statement;
  16. }
  17. TerminalExpression::~TerminalExpression()
  18. {
  19. }
  20. void TerminalExpression::Interpret(const Context& c)
  21. {
  22. cout<<this->_statement<<" TerminalExpression"<<endl;
  23. }
  24. NonterminalExpression::NonterminalExpression(AbstractExpression* expression,int times)
  25. {
  26. this->_expression = expression;
  27. this->_times = times;
  28. }
  29. NonterminalExpression::~NonterminalExpression()
  30. {
  31. }
  32. void NonterminalExpression::Interpret(const Context& c)
  33. {
  34. for (int i = 0; i < _times ; i++)
  35. {
  36. this->_expression->Interpret(c);
  37. }
  38. }

main.cpp

  1. #include "Interpreter.hpp"
  2. #include "Context.hpp"
  3. #include <iostream>
  4. using namespace std;
  5. int main(int argc,char* argv[])
  6. {
  7. Context* c = new Context();
  8. AbstractExpression* te = new TerminalExpression("hello");
  9. AbstractExpression* nte = new NonterminalExpression(te,2);
  10. nte->Interpret(*c);
  11. return 0;
  12. }

Interpreter 模式的示例代码很简单,只是为了说明模式的组织和使用,实际的解释Interpret 逻辑没有实际提供。

总结

XML 格式的数据解析是一个在应用开发中很常见并且有时候是很难处理的事情,虽然目前很多的开发平台、语言都提供了对 XML 格式数据的解析,但是例如到了移动终端设备上,由于处理速度、计算能力、存储容量的原因解析 XML 格式的数据却是很复杂的一件事情,最近也提出了很多的移动设备的 XML 格式解析器,但是总体上在项目开发时候还是需要自己去设计和实现这一个过程(痛苦经历)。

Interpreter 模式则提供了一种很好的组织和设计这种解析器的架构。

Interpreter 模式中使用类来表示文法规则,因此可以很容易实现文法的扩展。另外对于终结符我们可以使用 Flyweight 模式来实现终结符的共享。