• 重学设计模式(三、设计模式-访问者模式)


    1、访问者模式

        访问者模式的关键在于访问二字,那么什么是访问?其实在学习迭代器模式的时候,遍历就是访问的一般形式。

        假如有这样一个需求:

        1)一开始,是小黄的诉求——想要知道某个文件夹下所有的文件和文件夹的名字;

        2)接着,是小红的诉求——想要知道某个目录中文件和文件夹的个数;

        3)然后,是小蓝的诉求——想要删除某个目录中的某个文件;

        对于以上诉求,我们的很容易实现。对于小黄的诉求,我们通常只要遍历文件树就可以打印出来;对于小红的诉求,我们很快就能想到加个计数器来统计,这也是我们最常见的做法;对于小蓝的诉求,我们在遍历的时候,判断获取到的文件是小蓝需要删除的,则执行删除方法。

        对于上面的 ,我们都有一个相同的操作,即遍历文件树。我们最常见,也是最容易想到的做法1:分三个方法实现;做法2:共用一个方法,并且加判断。如果此时,还有人继续提出需求呢?又要修改原有代码。

        在现实生活中,其实也有很多这样的例子,比如对于同一部电影来说,不同的观众对他们的评价也不同。

        这些被处理的数据相对稳定而访问者的操作是多样化的,使用访问者模式来处理就比较方便了。

    1.1、什么是访问者模式

    • 定义

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

        简单的说,访问者模式就是把作用于元素(数据结构/算法)的操作分离出来封装成独立的类,使得操作集可以相对自由的实现,新增操作时不违背开闭原则。

    访问者模式的结构:

        1)抽象访问者(Visitor)角色:定义一个访问具体元素的接口,为每个具体元素类对应一个访问操作 visit() ,它的参数就是被访问者的具体元素;

        2)具体访问者(ConcreteVisitor)角色:它需要给出对每一个元素类访问时所产生的具体行为;

        3)抽象元素(Element)角色:声明一个包含接受操作 accept() 的接口,被接受的访问者对象作为 accept() 方法的参数;

        4)具体元素(ConcreteElement)角色:实现抽象元素角色提供的 accept() 操作,其方法体通常都是 visitor.visit(this) ,另外具体元素中可能还包含本身业务逻辑的相关操作;

        5)对象结构(Object Structure)角色:对象结构是一个抽象表述,具体点可以理解为一个具有容器性质或者复合对象特性的类,它会含有一组元素并且可以迭代这些元素,供访问者访问。

        访问者模式的意图在于:将数据结构与作用于结构上的操作进行解耦,使你可以在不改变各元素类的前提下定义作用于这些元素的新操作。

    3.22.2、访问者模式的优缺点

    • 优点

        1)扩展性好,可以在不修改对象结构中的元素的情况下,为对象结构中的元素添加新的行为;

        2)符合单一职责原则,可以把同一行为的多种操作分离到不同的类中;

        3)灵活性好,访问者模式将数据结构与作用于结构上的操作解耦,易于扩展。

    • 缺点

        访问者模式中具体元素的操作细节给了访问者,这破坏了对象的封装性。

    3.22.3、创建方式

        我们以购物为例,普通用户,加入购物车后得到商品的总价;VIP会员,加入购物车后得到商品的总价。

    1)抽象访问者(Visitor)角色

    1. //抽象访问者,定义访问者可以做的事情
    2. public interface CustomerVisitor {
    3. String browseProducts(Goods goods); //浏览商品
    4. }

    2)抽象元素(Element)角色

    1. //抽象元素,包含接受操作,被访问者作为accept
    2. public abstract class Goods {
    3. private String name; //商品名称
    4. private Integer price; //商品价格
    5. abstract Integer accept(CustomerVisitor visitor); //接收访问者
    6. public Goods(){
    7. }
    8. public Goods(String name,Integer price){
    9. this.name = name;
    10. this.price = price;
    11. }
    12. /**
    13. * @return the name
    14. */
    15. public String getName() {
    16. return name;
    17. }
    18. /**
    19. * @param name the name to set
    20. */
    21. public void setName(String name) {
    22. this.name = name;
    23. }
    24. /**
    25. * @return the price
    26. */
    27. public Integer getPrice() {
    28. return price;
    29. }
    30. /**
    31. * @param price the price to set
    32. */
    33. public void setPrice(Integer price) {
    34. this.price = price;
    35. }
    36. @Override
    37. public String toString() {
    38. return this.name+"价格:"+this.price;
    39. }
    40. }

    3)具体访问者(ConcreteVisitor)角色

    1. //具体访问者-普通会员
    2. public class OrdinaryVisitor implements CustomerVisitor{
    3. @Override
    4. public String browseProducts(Goods goods) {
    5. String goodsMessage = goods.toString();
    6. return goodsMessage;
    7. }
    8. }
    9. //具体访问者-VIP会员
    10. public class VipVisitor implements CustomerVisitor{
    11. @Override
    12. public String browseProducts(Goods goods) {
    13. goods.setPrice(goods.getPrice()-5);
    14. String goodsMessage = goods.toString();
    15. return goodsMessage;
    16. }
    17. }

    4)具体元素(ConcreteElement)角色

    1. public class Book extends Goods{
    2. public Book(String name,Integer price){
    3. super(name, price);
    4. }
    5. /**
    6. * 接受访问者,并且把自已(商品)传给访问者
    7. */
    8. @Override
    9. Integer accept(CustomerVisitor visitor) {
    10. String bp = visitor.browseProducts(this); //把一些处理逻辑(计算费用)的 【操作权限】 给访问者
    11. System.out.println(bp); //打印浏览价格
    12. return this.getPrice();
    13. }
    14. }

    5)对象结构(Object Structure)角色

    1. //对象结构角色
    2. public class ShoppingCartStructure {
    3. private List<Goods> list = new ArrayList<Goods>();
    4. /**
    5. * 计算总价
    6. */
    7. public String accept(CustomerVisitor visitor){
    8. Iterator<Goods> i = list.iterator();
    9. Integer price = 0;
    10. while (i.hasNext()) {
    11. price += ((Goods) i.next()).accept(visitor);
    12. }
    13. return "商品总价"+price;
    14. }
    15. /**
    16. * 添加商品
    17. */
    18. public void add(Goods goods) {
    19. list.add(goods);
    20. }
    21. public void remove(Goods goods) {
    22. list.remove(goods);
    23. }
    24. }

    6)客户端

    1. public class Client {
    2. public static void main(String[] args) {
    3. Goods hlm = new Book("红楼梦",120);
    4. Goods sgyy = new Book("三国演义",105);
    5. Goods xyj = new Book("西游记",80);
    6. //创建访问者-普通会员
    7. OrdinaryVisitor ov = new OrdinaryVisitor();
    8. //创建结构对象-购物车
    9. ShoppingCartStructure scs = new ShoppingCartStructure();
    10. System.out.println("普通会员浏览商品");
    11. scs.add(hlm); //添加商品
    12. scs.add(sgyy); //添加商品
    13. scs.add(xyj); //添加商品
    14. System.out.println(scs.accept(ov));
    15. //创建访问者-VIP会员
    16. VipVisitor vip = new VipVisitor();
    17. //创建结构对象-购物车
    18. ShoppingCartStructure vscs = new ShoppingCartStructure();
    19. System.out.println("VIP会员浏览商品");
    20. vscs.add(hlm);
    21. vscs.add(sgyy);
    22. vscs.add(xyj);
    23. System.out.println(vscs.accept(vip));
    24. }
    25. }

    案例效果:

        为了更有效的理解访问者模式,我们再看看JDK中的实现。其实,在JDK1.7中引进了一个叫FileVisitor的接口,看名字就猜到了一半,它使用了访问者模式。

    1. //抽象访问者(Visitor)角色
    2. public interface FileVisitor<T> {
    3. FileVisitResult preVisitDirectory(T dir, BasicFileAttributes attrs)
    4. throws IOException;
    5. FileVisitResult visitFile(T file, BasicFileAttributes attrs)
    6. throws IOException;
    7. FileVisitResult visitFileFailed(T file, IOException exc)
    8. throws IOException;
    9. FileVisitResult postVisitDirectory(T dir, IOException exc)
    10. throws IOException;
    11. }
    12. //具体访问者(ConcreteVisitor)角色,在SimpleFileVisitor中只是对FileVisitor的简单实现,并没有什么特别的控制
    13. public class SimpleFileVisitor<T> implements FileVisitor<T> {
    14. @Override
    15. public FileVisitResult preVisitDirectory(T dir, BasicFileAttributes attrs)
    16. throws IOException
    17. {
    18. Objects.requireNonNull(dir);
    19. Objects.requireNonNull(attrs);
    20. return FileVisitResult.CONTINUE;
    21. }
    22. @Override
    23. public FileVisitResult visitFile(T file, BasicFileAttributes attrs)
    24. throws IOException
    25. {
    26. Objects.requireNonNull(file);
    27. Objects.requireNonNull(attrs);
    28. return FileVisitResult.CONTINUE;
    29. }
    30. @Override
    31. public FileVisitResult visitFileFailed(T file, IOException exc)
    32. throws IOException
    33. {
    34. Objects.requireNonNull(file);
    35. throw exc;
    36. }
    37. @Override
    38. public FileVisitResult postVisitDirectory(T dir, IOException exc)
    39. throws IOException
    40. {
    41. Objects.requireNonNull(dir);
    42. if (exc != null)
    43. throw exc;
    44. return FileVisitResult.CONTINUE;
    45. }
    46. }
    47. //在java.nio.file中的Files类中有个walkFileTree方法,通过FileTreeWalker方法实现
    48. public static Path walkFileTree(Path start,
    49. Set<FileVisitOption> options,
    50. int maxDepth,
    51. FileVisitor<? super Path> visitor)
    52. throws IOException
    53. {
    54. if (maxDepth < 0)
    55. throw new IllegalArgumentException("'maxDepth' is negative");
    56. new FileTreeWalker(options, visitor, maxDepth).walk(start);
    57. return start;
    58. }
    59. //在walkFileTree中实现了文件树的遍历,且遍历到文件的时候,仍然调用了visitor.visitFile(file, attrs)方法,由遍历者决定是否要继续遍历或做一些其他的操作。
    60. //省略其他部分...
    61. // unable to get attributes of file
    62. if (exc != null) {
    63. return visitor.visitFileFailed(file, exc);
    64. }
    65. // at maximum depth or file is not a directory
    66. if (depth >= maxDepth || !attrs.isDirectory()) {
    67. return visitor.visitFile(file, attrs);
    68. }

    1.4、总结及建议

        是不是觉得访问者模式有点像模板方法模式,都是封装了固定不变的东西,开放了可变的东西。模板方法模式为可变部分预留扩展点,而访问者模式,将可变点分离出来由访问者来决定做一些处理,但是它们还是有一点区别的,访问者模式在变化(访问者)与固定(被访问者)之间,是组合关系,而模板方法模式的变化与固定之间是继承关系。

        访问者模式在迭代器模式下做了进一步的分离,它是对迭代器模式的扩充,可以遍历不同的对象,也可以在遍历的同时执行一些其他的操作。

    应用场景:

        1)如果需要对复杂对象结构或对象结构比较稳定,但需要对所有元素执行操作时,可以使用访问者模式;

        2)可以将所有其他行为提取到一组访问者类中,使您的应用程序的主要类更加专注于它们的主要工作;

        3)可以充当拦截器角色。

    JDK中访问者模式的应用:

        javax.lang.model.element.AnnotationValue-AnnotationValueVisitor

        javax.lang.model.element.Element-ElementVisitor

        java.nio.file.FileVisitor-SimpleFileVisitor

        javax.faces.component.visit.VisitContext-VisitCallback

  • 相关阅读:
    vue优化之如何管理系统变量
    react-state hook
    # lvs负载均衡
    做软件测试是在浪费时间吗,有未来吗?
    寻找领域不变量:从生成模型到因果表征
    MySQL复合查询
    SpringBoot 项目实战 ~ 7. 短信验证码登录
    Python灰帽编程——初识Python下(函数与文件)
    从短期到长期:品牌建设应该如何使用web3进行营销
    [LeetCode85双周赛] [滑动窗口] [差分数组] [并查集]
  • 原文地址:https://blog.csdn.net/xiaoxianer321/article/details/125472340