设计模式行为型中介者模式

Posted lisin-lee-cooper

tags:

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

一.概述

1.1 概述
又叫调停模式,定义一个中介角色来封装一系列对象之间的交互,使原有对象之间的耦合松散,且可以独立地改变它们之间的交互。

1.2 结构

抽象中介者(Mediator)角色:它是中介者的接口,提供了同事对象注册与转发同事对象信息的抽象方法。
具体中介者(ConcreteMediator)角色:实现中介者接口,定义一个 List 来管理同事对象,协调各个同事角色之间的交互关系,因此它依赖于同事角色。

抽象同事类(Colleague)角色:定义同事类的接口,保存中介者对象,提供同事对象交互的抽象方法,实现所有相互影响的同事类的公共功能。
具体同事类(Concrete Colleague)角色:是抽象同事类的实现者,当需要与其他同事对象交互时,由中介者对象负责后续的交互。

二.场景

现在租房基本都是通过房屋中介,房主将房屋托管给房屋中介,而租房者从房屋中介获取房屋信息。房屋中介充当租房者与房屋所有者之间的中介者。

三.类图及实现

public interface Mediator 

    void  rent(String message,Person person);
    void lease(String message,Person person);


public abstract class Person 

    protected String name;
    protected Mediator mediator;

    public Person(String name, Mediator mediator) 
        this.name = name;
        this.mediator = mediator;
    



public class Tenant extends Person 
    public Tenant(String name, Mediator mediator) 
        super(name, mediator);
    

    public void constact(String message) 
        mediator.rent(message, this);
    

    public void getMessage(String message) 
        System.out.println("租房者" + name + "获取到的信息:" + message);
    

public class HouseOwner extends Person 
    public HouseOwner(String name, Mediator mediator) 
        super(name, mediator);
    

    public void constact(String message) 
        mediator.lease(message, this);
    

    public void getMessage(String message) 
        System.out.println("房主" + name + "获取到的信息:" + message);
    



public class MediatorStructure implements Mediator 
    private HouseOwner houseOwner;
    private Tenant tenant;

    public HouseOwner getHouseOwner() 
        return houseOwner;
    

    public void setHouseOwner(HouseOwner houseOwner) 
        this.houseOwner = houseOwner;
    

    public Tenant getTenant() 
        return tenant;
    

    public void setTenant(Tenant tenant) 
        this.tenant = tenant;
    

    @Override
    public void rent(String message, Person person) 
        tenant.getMessage(message);
    

    @Override
    public void lease(String message, Person person) 
        houseOwner.getMessage(message);
    

public class MediatorMain 

    public static void main(String[] args) 
        MediatorStructure mediator = new MediatorStructure();
        HouseOwner houseOwner = new HouseOwner("张三", mediator);
        Tenant tenant = new Tenant("李四", mediator);

        mediator.setHouseOwner(houseOwner);
        mediator.setTenant(tenant);
        tenant.constact("需要租三室的房子");
        houseOwner.constact("我这有三室的房子,你需要租吗?");
    


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

手撸golang 行为型设计模式 中介者模式

Python 设计模式 — 行为型模式 — 中介者模式

Python 设计模式 — 行为型模式 — 中介者模式

设计模式——行为型模式之中介者模式

行为型模式之中介者模式

设计模式之行为型中介模式