文章目录
- 前言
- 一、访问者模式基本介绍
- 二、访问者模式应用实例
- 完整代码
- 评测抽象类 Action
- 成功评价 Success
- 失败评价
- 评价人抽象类
- 男性
- 女性
- 数据结构,管理很多人评价
- Clint 测试
- 添加 wait 选票
- clint 测试
- 三、访问者模式的注意事项和细节
前言
一、访问者模式基本介绍
二、访问者模式应用实例
完整代码
评测抽象类 Action
package tanchishell.SJMS.visitor;
//评测抽象接口
public abstract class Action {
//得到男性 的测评
public abstract void getManResult(Man man);
//得到女的 测评
public abstract void getWomanResult(Woman woma);
}
成功评价 Success
package tanchishell.SJMS.visitor;
public class Success extends Action {
@Override
public void getManResult(Man man) {
System.out.println(" 男人给的评价该歌手很成功 !");
}
@Override
public void getWomanResult(Woman woman) {
System.out.println(" 女人给的评价该歌手很成功 !");
}
}
失败评价
package tanchishell.SJMS.visitor;
public class Fail extends Action {
@Override
public void getManResult(Man man) {
System.out.println(" 男人给的评价该歌手失败 !");
}
@Override
public void getWomanResult(Woman woman) {
System.out.println(" 女人给的评价该歌手失败 !");
}
}
评价人抽象类
package tanchishell.SJMS.visitor;
public abstract class Person {
//提供一个方法,让访问者可以访问
public abstract void accept(Action action);
}
男性
package tanchishell.SJMS.visitor;
public class Man extends Person{
@Override
public void accept(Action action) {
//获取男性的评价
action.getManResult(this);
}
}
女性
package tanchishell.SJMS.visitor;
//说明
//1. 这里我们使用到了双分派, 即首先在客户端程序中,将具体状态作为参数传递 Woman 中(第一次分派)
//2. 然后 Woman 类调用作为参数的 "具体方法" 中方法 getWomanResult, 同时将自己(this)作为参数
// 传入,完成第二次的分派,也就是当参数被传递到当前方法后,立即有执行了其他方法,当前方法更像再分派一个任务,而不是在执行一个任务。
public class Woman extends Person {
@Override
public void accept(Action action) {
action.getWomanResult(this);
}
}
数据结构,管理很多人评价
package tanchishell.SJMS.visitor;
import java.util.LinkedList;
import java.util.List;
//数据结构,管理很多人(Man , Woman)
public class ObjectStructure {
//维护了一个集合
private List<Person> persons = new LinkedList<>();
//增加到 list
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);
}
}
}
Clint 测试
package tanchishell.SJMS.visitor;
public class Client {
/**
* 流程:
* 先创建 objectStructure 传入 Man Woman,然后获取 success 或者 fail
* 调用 display传入 success,需要一个 Action,然后调用到了 Person的 accept 方法
* 然后会调用到 getManResult 方法获取评价 最后输出 System.out.println(" 男人给的评价该歌手很成功 !");
*
*/
public static void main(String[] args) {
//创建 ObjectStructure
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);
}
}
输出
男人给的评价该歌手很成功 !
女人给的评价该歌手很成功 !
===============
男人给的评价该歌手失败 !
女人给的评价该歌手失败 !
添加 wait 选票
package tanchishell.SJMS.visitor;
public class Wait extends Action {
public void getManResult(Man man) {
System.out.println(" 男人给的评价是该歌手待定 ..");
}
public void getWomanResult(Woman woman){
System.out.println(" 女人给的评价是该歌手待定 ..");
}
}
clint 测试
package tanchishell.SJMS.visitor;
public class Client {
/**
* 流程:
* 先创建 objectStructure 传入 Man Woman,然后获取 success 或者 fail
* 调用 display传入 success,需要一个 Action,然后调用到了 Person的 accept 方法
* 然后会调用到 getManResult 方法获取评价 最后输出 System.out.println(" 男人给的评价该歌手很成功 !");
*
*/
public static void main(String[] args) {
//创建 ObjectStructure
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);
}
}
输出
男人给的评价该歌手很成功 !
女人给的评价该歌手很成功 !
===============
男人给的评价该歌手失败 !
女人给的评价该歌手失败 !
=======给的是待定的测评========
男人给的评价是该歌手待定 ..
女人给的评价是该歌手待定 ..