什么是访问者设计模式? 访问者设计模式—> 行为型模式
基本介绍
访问者模式(VisitorPattern),封装一些作用于某种数据结构的各元素的操作,它可以在不改变数据结构的前提下定义作用于这些元素的新的操作;
主要将数据结构与数据操作分离,解决数据结构
和 操作耦合性
问题;
访问者模式的基本工作原理是:在被访问的类里面加一个对外提供接待访问者的接口;
访问者模式主要应用场景是:需要对一个对象结构中的对象进行很多不同操作(这些操作彼此没有关联),同时需要避免让这些操作”污染”这些对象的类,可以选用访问者模式解决。
角色定义
Visitor 抽象访问者,为该对象结构中 ConcreteElement 的每一个类声明一个 visit 操作;
ConcreteVisitor 具体的访问者,实现每个有 Visitor 声明的操作,是每个操作实现的部分;
ObjectStructure 能枚举它的元素,可以提供一个高层的接口,用来允许访问者访问元素;
Element 定义一个 accept 方法,接收一个访问者对象;
ConcreteElement 为具体元素,实现了accept 方法;
访问者设计模式应用实例 Action 1 2 3 4 5 6 7 public abstract class Action { public abstract void getManResult (Man man) ; public abstract void getWomanResult (Woman woman) ; }
Success 1 2 3 4 5 6 7 8 9 10 11 12 public class Success extends Action { @Override public void getManResult (Man man) { System.out.println("Man 评价成功!" ); } @Override public void getWomanResult (Woman woman) { System.out.println("Woman 评价成功!" ); } }
Fail 1 2 3 4 5 6 7 8 9 10 11 12 public class Fail extends Action { @Override public void getManResult (Man man) { System.out.println("Man 评价失败!" ); } @Override public void getWomanResult (Woman woman) { System.out.println("Woman 评价失败!" ); } }
Wait 1 2 3 4 5 6 7 8 9 10 11 12 public class Wait extends Action { @Override public void getManResult (Man man) { System.out.println("Man 评价待定" ); } @Override public void getWomanResult (Woman woman) { System.out.println("Woman 评价待定" ); } }
Person 1 2 3 4 5 public abstract class Person { public abstract void accept (Action action) ; }
Man 1 2 3 4 5 6 7 public class Man extends Person { @Override public void accept (Action action) { action.getManResult(this ); } }
Woman 1 2 3 4 5 6 7 public class Woman extends Person { @Override public void accept (Action action) { action.getWomanResult(this ); } }
ObjectStructure 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 import java.util.LinkedList;import java.util.List;public class ObjectStructure { private List<Person> persons = new LinkedList<>(); public void attach (Person p) { persons.add(p); } public void detach (Person p) { persons.remove(p); } public void display (Action action) { for (Person p : persons) { p.accept(action); } } }
Client 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 public class Client { public static void main (String[] args) { ObjectStructure objectStructure = new ObjectStructure(); objectStructure.attach(new Man()); objectStructure.attach(new Woman()); Success success = new Success(); objectStructure.display(success); System.out.println("=====================" ); Fail fail = new Fail(); objectStructure.display(fail); System.out.println("=====================" ); Wait wait = new Wait(); objectStructure.display(wait); } }
访问者模式的注意事项和细节 优点
缺点
具体元素对访问者公布细节,也就是说访问者关注了其他类的内部细节,这是迪米特法则所不建议的,这样造 成了具体元素变更比较困难;
违背了依赖倒转原则。访问者依赖的是具体元素,而不是抽象元素;
因此, 如果一个系统有比较稳定的数据结构,又有经常变化的功能需求,那么访问者模式就是比较合适的。
感谢阅读
If you like this blog or find it useful for you, you are welcome to comment on it. You are also welcome to share this blog, so that more people can participate in it. If the images used in the blog infringe your copyright, please contact the author to delete them. Thank you !