翼度科技»论坛 编程开发 PHP 查看内容

浅谈PHP设计模式的访问者模式

4

主题

4

帖子

12

积分

新手上路

Rank: 1

积分
12
简介:

访问者模式,属于行为型的设计模式。表示一个作用于某对象结构中的各元素的操作。它是你可以在不改变各元素的类的前提下定义作用于这些元素的新操作。
适用场景:


  • 类中有易于变化的算法。
  • 希望数据结构与数据分离。
优点:


  • 便于增加新的操作,相当于增加一个访问者。访问者模式将有关行为集中到一个访问者对象中。
缺点:

元素变更比较困难,如为被访问的对象增加、减少一些属性,相应的访问者也需要进行修改 ;
代码:
  1. /**
  2. *Component接口声明了一个“accept”方法,该方法应将base访问者接口作为参数。
  3. */
  4. interface Component
  5. {
  6.     public function accept(Visitor $visitor): void;
  7. }
  8. /**
  9. *每个具体组件必须以这样的方式实现“accept”方法:它调用与组件类对应的访问者方法。
  10. */
  11. class ConcreteComponentA implements Component
  12. {
  13.     /*
  14.      * 注意,我们调用的是与当前类名匹配的“visitContainerComponentA”。通过这种方式,我们让访问者知道它所使用的组件的类
  15.      */
  16.     public function accept(Visitor $visitor): void
  17.     {
  18.         $visitor->visitConcreteComponentA($this);
  19.     }
  20.     /*
  21.      * 具体组件可能具有其基类或接口中不存在的特殊方法。Visitor仍然能够使用这些方法,因为它知道组件的具体类
  22.      */
  23.     public function exclusiveMethodOfConcreteComponentA(): string
  24.     {
  25.         return "A";
  26.     }
  27. }
  28. class ConcreteComponentB implements Component
  29. {
  30.     /**
  31.      * 此处相同:visitContainerComponentB=>ConcreteComponentB
  32.      */
  33.     public function accept(Visitor $visitor): void
  34.     {
  35.         $visitor->visitConcreteComponentB($this);
  36.     }
  37.     public function specialMethodOfConcreteComponentB(): string
  38.     {
  39.         return "B";
  40.     }
  41. }
  42. /**
  43. *Visitor接口声明了一组与组件类相对应的访问方法。访问方法的签名允许访问者标识它正在处理的组件的确切类。
  44. */
  45. interface Visitor
  46. {
  47.     public function visitConcreteComponentA(ConcreteComponentA $element): void;
  48.     public function visitConcreteComponentB(ConcreteComponentB $element): void;
  49. }
  50. /**
  51. *Concrete Visitors实现了同一算法的多个版本,它可以与所有具体组件类一起工作。当将Visitor模式与复杂的对象结构(如Composite树)一起使用时,您可以体验到它的最大好处。在这种情况下,在对结构的各个对象执行访问者的方法时,存储算法的一些中间状态可能会有所帮助。
  52. */
  53. class ConcreteVisitor1 implements Visitor
  54. {
  55.     public function visitConcreteComponentA(ConcreteComponentA $element): void
  56.     {
  57.         echo $element->exclusiveMethodOfConcreteComponentA() . " + ConcreteVisitor1\n";
  58.     }
  59.     public function visitConcreteComponentB(ConcreteComponentB $element): void
  60.     {
  61.         echo $element->specialMethodOfConcreteComponentB() . " + ConcreteVisitor1\n";
  62.     }
  63. }
  64. class ConcreteVisitor2 implements Visitor
  65. {
  66.     public function visitConcreteComponentA(ConcreteComponentA $element): void
  67.     {
  68.         echo $element->exclusiveMethodOfConcreteComponentA() . " + ConcreteVisitor2\n";
  69.     }
  70.     public function visitConcreteComponentB(ConcreteComponentB $element): void
  71.     {
  72.         echo $element->specialMethodOfConcreteComponentB() . " + ConcreteVisitor2\n";
  73.     }
  74. }
  75. /**
  76. *客户端代码可以在任何一组元素上运行访问者操作,而无需弄清楚它们的具体类。accept操作将调用指向访问者对象中的适当操作。
  77. */
  78. function clientCode(array $components, Visitor $visitor)
  79. {
  80.     // ...
  81.     foreach ($components as $component) {
  82.         $component->accept($visitor);
  83.     }
  84.     // ...
  85. }
  86. //调用端
  87. $components = [
  88.     new ConcreteComponentA(),
  89.     new ConcreteComponentB(),
  90. ];
  91. echo "客户端代码通过基本访问者界面与所有访问者一起工作:\n";
  92. $visitor1 = new ConcreteVisitor1();
  93. clientCode($components, $visitor1);
  94. echo "\n";
  95. echo "它允许相同的客户端代码与不同类型的访问者一起工作:\n";
  96. $visitor2 = new ConcreteVisitor2();
  97. clientCode($components, $visitor2);
复制代码
来源:https://www.cnblogs.com/phpphp/p/17069476.html
免责声明:由于采集信息均来自互联网,如果侵犯了您的权益,请联系我们【E-Mail:cb@itdo.tech】 我们会及时删除侵权内容,谢谢合作!

举报 回复 使用道具