GOF23设计模式——中介者模式(Mediator)

中介者模式

/**
 * 中介者接口
 */
public interface Mediator {
    void register(String  dname,Department department);


    void command(String dname);
}
/**
 * 总经理
 */
public class President implements Mediator {


    private HashMap<String ,Department> map = new HashMap<>();

    @Override
    public void register(String dname, Department department) {
        map.put(dname,department);
    }

    @Override
    public void command(String dname) {

        map.get(dname).selfAction();
    }
}
/**
 * 部门的基类
 */
public interface Department {

    /**
     * 做部门内部的事情
     */
    void selfAction();

    /**
     * 向总经理打交道,发起申请
     */
    void outAction();
}
/**
 * 研发部
 */
public class Development implements Department {

    private Mediator m;//持有中介者(总经理)的引用

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

    @Override
    public void selfAction() {
        System.out.println("加班狗,好好加班,写代码!!!");

    }

    @Override
    public void outAction() {
        System.out.println("向老板汇报,没钱了,需要资金支持研发工作!!!!");
        m.command("finacial");
    }
}

/**
 * 财务部
 */
public class Finacial implements Department {

    private Mediator m;//持有中介者(总经理)的引用

    public Finacial(Mediator m) {
        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) {
        this.m = m;
        m.register("market", this);
    }

    @Override
    public void selfAction() {
        System.out.println("在外面跑项目,接待客户,晚上准备配客户喝酒!");
    }

    @Override
    public void outAction() {
        System.out.println("向老板汇报,项目承接的进度,需要资金支持!!!!");
    }
}

public class Client {
    public static void main(String[] args) {
        Mediator m = new President();

        Development development = new Development(m);

        Market market = new Market(m);
        Finacial finacial = new Finacial(m);



        development.selfAction();
        development.outAction();

    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值