行为型模式-中介者模式 http://blog.csdn.net/zhengzhb/article/details/7430098

菜鸟教程例子  http://www.runoob.com/design-pattern/mediator-pattern.html

聊天室实例来演示中介者模式。实例中,多个用户可以向聊天室发送消息,聊天室向所有的用户显示消息。我们将创建两个类 ChatRoom 和 User。User 对象使用 ChatRoom 方法来分享他们的消息。