• 设计模式——访问者模式(Visitor Pattern)+ Spring相关源码



    一、访问者模式(Visitor Pattern)

    行为型模式。
    目的:将数据结构数据操作分离。


    二、文字描述

    对象属性的操作,交由Visitor对象进行操作。


    三、例子

    先说明一下。
    个人认为访问者模式不一定非得按照菜鸟教程的例子来写,就像单例模式有好几种实现。
    我们只需要将访问者的概念实现即可。

    例子一:菜鸟教程

    对象定义

    public interface ComputerPart {
       public void accept(ComputerPartVisitor computerPartVisitor);
    }
    
    • 1
    • 2
    • 3
    public class Monitor  implements ComputerPart {
       @Override
       public void accept(ComputerPartVisitor computerPartVisitor) {
          computerPartVisitor.visit(this);
       }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    public class Computer implements ComputerPart {
       private String data;
       @Override
       public void accept(ComputerPartVisitor computerPartVisitor) {
          computerPartVisitor.visit(this);
       }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7

    访问者定义

    public interface ComputerPartVisitor {
       public void visit(Computer computer);
       public void visit(Monitor monitor);
    }
    
    • 1
    • 2
    • 3
    • 4
    public class ComputerPartDisplayVisitor implements ComputerPartVisitor {
     
       @Override
       public void visit(Computer computer) {
          System.out.println("Displaying Computer.");
          computer.data = "修改数据";
       }
     
       @Override
       public void visit(Monitor monitor) {
          System.out.println("Displaying Monitor.");
       }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13

    使用

    ComputerPart computer = new Computer();
    computer.accept(new ComputerPartDisplayVisitor());
    
    • 1
    • 2

    总结

    这个例子是菜鸟上的例子,已经被我简化了一下。
    但是对于刚学这个模式的人来说,我感觉还是太绕了。


    例子二:Spring的BeanDefinitionVisitor

    这个Spring里面的一个类,个人认为这个比较好理解。
    下面是BeanDefinitionVisitor的代码。
    为了方便理解,代码比较长的方法已经被我删了,完整代码可以自己去spring看。

    public class BeanDefinitionVisitor {
        @Nullable
        private StringValueResolver valueResolver;
    
        public BeanDefinitionVisitor(StringValueResolver valueResolver) {
            Assert.notNull(valueResolver, "StringValueResolver must not be null");
            this.valueResolver = valueResolver;
        }
    
        protected BeanDefinitionVisitor() {
        }
    
        protected void visitParentName(BeanDefinition beanDefinition) {
            String parentName = beanDefinition.getParentName();
            if (parentName != null) {
                String resolvedName = this.resolveStringValue(parentName);
                if (!parentName.equals(resolvedName)) {
                    beanDefinition.setParentName(resolvedName);
                }
            }
        }
    
        protected void visitBeanClassName(BeanDefinition beanDefinition) {
            String beanClassName = beanDefinition.getBeanClassName();
            if (beanClassName != null) {
                String resolvedName = this.resolveStringValue(beanClassName);
                if (!beanClassName.equals(resolvedName)) {
                    beanDefinition.setBeanClassName(resolvedName);
                }
            }
        }
    
        protected void visitFactoryBeanName(BeanDefinition beanDefinition) {
            String factoryBeanName = beanDefinition.getFactoryBeanName();
            if (factoryBeanName != null) {
                String resolvedName = this.resolveStringValue(factoryBeanName);
                if (!factoryBeanName.equals(resolvedName)) {
                    beanDefinition.setFactoryBeanName(resolvedName);
                }
            }
        }
    
        protected void visitFactoryMethodName(BeanDefinition beanDefinition) {
            String factoryMethodName = beanDefinition.getFactoryMethodName();
            if (factoryMethodName != null) {
                String resolvedName = this.resolveStringValue(factoryMethodName);
                if (!factoryMethodName.equals(resolvedName)) {
                    beanDefinition.setFactoryMethodName(resolvedName);
                }
            }
        }
    
        protected void visitScope(BeanDefinition beanDefinition) {
            String scope = beanDefinition.getScope();
            if (scope != null) {
                String resolvedScope = this.resolveStringValue(scope);
                if (!scope.equals(resolvedScope)) {
                    beanDefinition.setScope(resolvedScope);
                }
            }
        }
    
        protected void visitPropertyValues(MutablePropertyValues pvs) {
            PropertyValue[] pvArray = pvs.getPropertyValues();
            PropertyValue[] var3 = pvArray;
            int var4 = pvArray.length;
    
            for(int var5 = 0; var5 < var4; ++var5) {
                PropertyValue pv = var3[var5];
                Object newVal = this.resolveValue(pv.getValue());
                if (!ObjectUtils.nullSafeEquals(newVal, pv.getValue())) {
                    pvs.add(pv.getName(), newVal);
                }
            }
        }
    
        protected void visitArray(Object[] arrayVal) {
            for(int i = 0; i < arrayVal.length; ++i) {
                Object elem = arrayVal[i];
                Object newVal = this.resolveValue(elem);
                if (!ObjectUtils.nullSafeEquals(newVal, elem)) {
                    arrayVal[i] = newVal;
                }
            }
    
        }
    
        protected void visitList(List listVal) {
            for(int i = 0; i < listVal.size(); ++i) {
                Object elem = listVal.get(i);
                Object newVal = this.resolveValue(elem);
                if (!ObjectUtils.nullSafeEquals(newVal, elem)) {
                    listVal.set(i, newVal);
                }
            }
        }
    
        @Nullable
        protected String resolveStringValue(String strVal) {
            if (this.valueResolver == null) {
                throw new IllegalStateException("No StringValueResolver specified - pass a resolver object into the constructor or override the 'resolveStringValue' method");
            } else {
                String resolvedValue = this.valueResolver.resolveStringValue(strVal);
                return strVal.equals(resolvedValue) ? strVal : resolvedValue;
            }
        }
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108

    这里就是用访问者的方法去设置BeanDefinition的属性,个人认为这个例子比较好理解。
    简单粗暴,就是将数据结构和数据操作分离,BeanDefinition将设置属性的操作交给了BeanDefinitionVisitor 操作。

    例子三、JDK——SimpleFileVisitor

    public class SimpleFileVisitor<T> implements FileVisitor<T> {
        /**
         * Initializes a new instance of this class.
         */
        protected SimpleFileVisitor() {
        }
    
        /**
         * Invoked for a directory before entries in the directory are visited.
         *
         * 

    Unless overridden, this method returns {@link FileVisitResult#CONTINUE * CONTINUE}. */ @Override public FileVisitResult preVisitDirectory(T dir, BasicFileAttributes attrs) throws IOException { Objects.requireNonNull(dir); Objects.requireNonNull(attrs); return FileVisitResult.CONTINUE; } /** * Invoked for a file in a directory. * *

    Unless overridden, this method returns {@link FileVisitResult#CONTINUE * CONTINUE}. */ @Override public FileVisitResult visitFile(T file, BasicFileAttributes attrs) throws IOException { Objects.requireNonNull(file); Objects.requireNonNull(attrs); return FileVisitResult.CONTINUE; } /** * Invoked for a file that could not be visited. * *

    Unless overridden, this method re-throws the I/O exception that prevented * the file from being visited. */ @Override public FileVisitResult visitFileFailed(T file, IOException exc) throws IOException { Objects.requireNonNull(file); throw exc; } /** * Invoked for a directory after entries in the directory, and all of their * descendants, have been visited. * *

    Unless overridden, this method returns {@link FileVisitResult#CONTINUE * CONTINUE} if the directory iteration completes without an I/O exception; * otherwise this method re-throws the I/O exception that caused the iteration * of the directory to terminate prematurely. */ @Override public FileVisitResult postVisitDirectory(T dir, IOException exc) throws IOException { Objects.requireNonNull(dir); if (exc != null) throw exc; return FileVisitResult.CONTINUE; } }

    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71

    四、其他设计模式

    创建型模式
    结构型模式

    行为型模式

  • 相关阅读:
    二进制,八进制,十进制,十六进制 原码、反码、补码
    使用Python 创建 AI Voice Cover
    Java-使用Map集合计算文本中字符的个数
    (脑肿瘤分割笔记:六十二)缺失模态下的对抗性联合训练脑肿瘤分割网络
    Unity离线文档使用技巧(打开慢,查找慢的问题)
    python安装imblearn一直找不到包的解决方法
    Ubuntu安装hadoop集群 hive spark scala
    tekton 和 Argocd的区别
    Android Fragment中使用Arouter跳转到Activity后返回Fragment不回调onActivityResult
    NSSCTF Round#4
  • 原文地址:https://blog.csdn.net/malu_record/article/details/134061518