设计模式行为型访问者模式

Posted lisin-lee-cooper

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了设计模式行为型访问者模式相关的知识,希望对你有一定的参考价值。

一.概述

1.1 概述
封装一些作用于某种数据结构中的各元素的操作,它可以在不改变这个数据结构的前提下定义作用于这些元素的新的操作。

1.2 结构
抽象访问者(Visitor)角色:定义了对每一个元素 (Element) 访问的行为,它的参数就是可以访问的元素,它的方法个数理论上来讲与元素类个数(Element的实现类个数)是一样的,从这点不难看出,访问者模式要求元素类的个数不能改变。
具体访问者(ConcreteVisitor)角色:给出对每一个元素类访问时所产生的具体行为。
抽象元素(Element)角色:定义了一个接受访问者的方法( accept ),其意义是指,每一个元素都要可以被访问者访问。
具体元素(ConcreteElement)角色: 提供接受访问方法的具体实现,而这个具体的实现,通常情况下是使用访问者提供的访问该元素类的方法。
对象结构(Object Structure)角色:定义当中所提到的对象结构,对象结构是一个抽象表述,具体点可以理解为一个具有容器性质或者复合对象特性的类,它会含有一组元素( Element ),并且可以迭代这些元素,供访问者访问。

二.场景

现在养宠物的人特别多,我们就以这个为例,当然宠物还分为狗,猫等,要给宠物喂食的话,主人可以喂,其他人也可以喂食。
访问者角色:给宠物喂食的人
具体访问者角色:主人、其他人
抽象元素角色:动物抽象类
具体元素角色:宠物狗、宠物猫
结构对象角色:主人家

三.类图及实现

public interface Animal 
    void accept(Person person);

    String type();


public class Cat implements Animal 

    @Override
    public void accept(Person person) 
        person.feed(this);
        System.out.println("好好吃,喵喵喵!!!");
    

    @Override
    public String type() 
        return "喵喵";
    

public class Dog implements Animal 
    @Override
    public void accept(Person person) 
        person.feed(this);
        System.out.println("好好吃,汪汪汪!!!");
    

    @Override
    public String type() 
        return "汪汪";
    


public class Home 

    private List<Animal> nodeList = new ArrayList<Animal>();

    public void action(Person person) 
        for (Animal node : nodeList) 
            node.accept(person);
        
    

    public void add(Animal animal) 
        nodeList.add(animal);
    


public interface Person 

    void feed(Animal animal);



public class Owner implements Person 
    @Override
    public void feed(Animal animal) 
        System.out.println("主人喂食" + animal.type());
    



public class Someone implements Person
    @Override
    public void feed(Animal animal) 
        System.out.println("其他人喂食"+animal.type());
    


public class VisitorMain 

    public static void main(String[] args) 
        Home home = new Home();
        home.add(new Dog());
        home.add(new Cat());
        Owner owner = new Owner();
        home.action(owner);
        Someone someone = new Someone();
        home.action(someone);
    


以上是关于设计模式行为型访问者模式的主要内容,如果未能解决你的问题,请参考以下文章

设计模式-行为型-10-备忘录模式

手撸golang 行为型设计模式 访问者模式

行为型模式-访问者模式

设计模式 行为型模式 -- 访问者模式 拓展:双分派

设计模式 行为型模式 -- 访问者模式

设计模式(33)-----行为型模式-----访问者设计模式