设计模式之中介者模式 Mediator

Posted 大白

tags:

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

代码实现

public interface Mediator {

    void register(String dname,Department d);
    void command(String dname);
}
中介者接口
/*
 * 同事类接口
 */
public interface Department {

    void selfAction(); //做本部门工作
    void outAction();  //向总经理发出申请
}
同事类接口
public class Development implements Department{
    
    private Mediator m ; //持有中介者(总经理)的引用

    public Development(Mediator m) {
        super();
        this.m = m;
        m.register("development", this);
    }

    @Override
    public void selfAction() {
        System.out.println("开发项目");
    }

    @Override
    public void outAction() {
        System.out.println("汇报工作,需要资金支持");
    }

}


public class Finacial implements Department{
    
    private Mediator m ; //持有中介者(总经理)的引用

    public Finacial(Mediator m) {
        super();
        this.m = m;
        m.register("finacial", this);
    }

    @Override
    public void selfAction() {
        System.out.println("数钱");
    }

    @Override
    public void outAction() {
        System.out.println("汇报工作,钱怎么分配");
    }

}


public class Market implements Department{
    
    private Mediator m ; //持有中介者(总经理)的引用

    public Market(Mediator m) {
        super();
        this.m = m;
        m.register("market", this);
    }

    @Override
    public void selfAction() {
        System.out.println("接项目");
    }

    @Override
    public void outAction() {
        System.out.println("汇报工作,最新市场动态,需要资金支持");
        m.command("finacial");
    }

}
同事类实现
public class President implements Mediator{

    private Map<String,Department> map = new HashMap<String,Department>();
    
    @Override
    public void register(String dname, Department d) {
        map.put(dname,d);
    }

    @Override
    public void command(String dname) {
        map.get(dname).selfAction();
    }

}
中介者实现
public class Client {

    public static void main(String[] args) {
        Mediator m = new President();
        
        Market market = new Market(m);
        Development devp = new Development(m);
        Finacial f = new Finacial(m);
        
        market.selfAction();
        market.outAction();
    }
}
测试

 

以上是关于设计模式之中介者模式 Mediator的主要内容,如果未能解决你的问题,请参考以下文章

JAVA SCRIPT设计模式--行为型--设计模式之Mediator中介者模式(17)

Fun论设计模式之7:中介者模式(Mediator Pattern)

20行为型模式之中介者模式

设计模式之中介者模式(Mediator )

23种设计模式之中介者模式(Mediator)

GoF之中介者模式(Mediator)