23-8,中介者模式

1、中介者模式:Define an object that encapsulates how a set of objects interact. Mediator promotes loose coupling by keeping objects form referring to each other explicitly. and it cets you vary their interaction independently(用一个中介对象封装一系列的对象交换,中介者使各对象不需要显示地相互作用,从而使其耦合松散,而且可以独立的改变它们之间的交互。)

2、中介者模式的角色
  一、Mediator-抽象中介者角色
  抽象中介者角色定义统一的接口,用于各同事角色之间的通信
  二、Concrete Mediator - 具体中介者角色
  具体中介者角色通过协调各同事角色实现协作行为,因此他必须依赖于各个同事角色
  三、Colleague-同事角色
  每一个同事角色都知道中介者角色,而且与其他的同事角色进行通信的时候,一定通过中介者角色协作。

你可能感兴趣的:(中介者模式)