Net设计模式实例之中介者模式(Mediator Pattern)

简介:

一、中介者模式简介(Brief Intro du ction

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

中介者减少了各个同事对象的耦合,使得可以独立地改变和复用各个同事对象和中介者类;由于把对想如何协作进行了抽象,将中介作为一个独立的概念并将其封装在一个对象中,这样关注的对象就从对象各自本身的行为转移到他们之间的交互上来,也就是站在一个更宏伟的角度去考虑系统。

二、解决的问题(What To Solve

中介者模式一般应用于一组对象以定义良好但是复杂的方法进行通信的场合,以及想定制一个分布在多个类中的行为,而不想生成太多的子类的场合。

三、中介者模式分析(Analysis

1、中介者模式结构

Mediator:抽象中介者,定义了同事对象交互的接口。

ConcreteMediator:具体中介者对象,实现抽象类中的方法,此具体中介者对象需要知道所有具体同事类,并从具体同事接受消息,向具体同事对象发送命令。

Co ll eague类:抽象同事类。

ConcreteCo ll eague1类,ConcreteCo ll eague2:具体同事类,实现抽象同事类中的方法。每一个同时类需要知道中介者对象;每个具体同事类只需要了解自己的行为,而不需要了解其他同事类的情况。

2、源代码

1中介者类Mediator及其具体实现类ConcreteMediator

/// <summary>

/// The 'Mediator' abstract class

/// </summary>

abstract class Mediator

{

    public abstract void Send(string message,Co ll eague co ll eague);

}

/// <summary>

/// The 'ConcreteMediator' class

/// </summary>

class ConcreteMediator : Mediator

{

    private ConcreteCo ll eague1 _co ll eague1;

    private ConcreteCo ll eague2 _co ll eague2;

    public ConcreteCo ll eague1 Co ll eague1

    {

        set { _co ll eague1 = value; }

    }

 

    public ConcreteCo ll eague2 Co ll eague2

    {

        set { _co ll eague2 = value; }

    }

    public override void Send(string message,Co ll eague co ll eague)

    {

        if (co ll eague == _co ll eague1)

        {

            _co ll eague2.Notify(message);

        }

        else

        {

            _co ll eague1.Notify(message);

        }

    }

}

 

2、抽象同事类Co ll eague及其实现类ConcreteCo ll eague1ConcreteCo ll eague2

/// <summary>

/// The 'Co ll eague' abstract class

/// </summary>

abstract class Co ll eague

{

    protected Mediator mediator;

    // Constructor

    public Co ll eague(Mediator mediator)

    {

        this.mediator = mediator;

    }

}

/// <summary>

/// A 'ConcreteCo ll eague' class

/// </summary>

class ConcreteCo ll eague1 : Co ll eague

{

 

    // Constructor

    public ConcreteCo ll eague1(Mediator mediator)

 

        base(mediator)

    {

    }

    public void Send(string message)

    {

        mediator.Send(message, this);

    }

    public void Notify(string message)

    {

        Console.WriteLine("Co ll eague1 gets message: "+ message);

    }

}

/// <summary>

/// A 'ConcreteCo ll eague' class

/// </summary>

class ConcreteCo ll eague2 : Co ll eague

{

    // Constructor

    public ConcreteCo ll eague2(Mediator mediator)

 

        base(mediator)

    {

    }

    public void Send(string message)

    {

        mediator.Send(message, this);

    }

    public void Notify(string message)

    {

        Console.WriteLine("Co ll eague2 gets message: "+ message);

    }

}

 

3、客户端代码

static void  Main (string[] args)

{

    ConcreteMediator m = new ConcreteMediator();

    ConcreteCo ll eague 1  c 1 = new ConcreteCo ll eague1(m);

    ConcreteCo ll eague 2  c 2 = new ConcreteCo ll eague2(m);

    m.Co ll eague1 = c1;

    m.Co ll eague2 = c2;

    c1.Send("How are you? JamesHao");

    c2.Send("Fine, t hank s");

    // Wait for user

    Console.ReadKey();

}

3、程序运行结果

四.中介者模式案例分析(Example

1、场景

实现一个聊天室功能,聊城室就是一个中介者,参与聊天的人就是同事对象,如下图所示

AbstractChatroom:抽象聊天室类,做为Participant的交互的中介。

Register()方法:会员注册功能;Send()方法:发送消息功能。

Chatroom:具体聊天室类,实现抽象聊天室类中的方法。

Participant:参与者类,主要有发送消息Send()功能和接受消息Receive()功能。

Beatle类,NonBeatle:参与者类的具体实现,实现父类Paticipant类中的方法。

2、代码

1、抽象聊天室类AbstractChatroom及其具体聊天室Chatroom

/// <summary>

/// The 'Mediator' abstract class

/// </summary>

abstract class AbstractChatroom

{

    public abstract void Register(Participant participant);

    public abstract void Send(string from, string to, string message);

}

/// <summary>

/// The 'ConcreteMediator' class

/// </summary>

class Chatroom : AbstractChatroom

{

    private Dictionary<stringParticipant> _participants =newDictionary<stringParticipant>();

    public override void Register(Participant participant)

    {

        if (!_participants.ContainsValue(participant))

        {

            _participants[participant.Name] = participant;

        }

        participant.Chatroom = this;

 

    }

    public override void Send(string from, string to, string message)

    {

        Participant participant = _participants[to];

        if (participant != nu ll )

        {

            participant.Receive(from, message);

        }

    }

}

 

2、参与者Participant类及其实现BeatleNonBeatle

/// <summary>

/// The 'AbstractCo ll eague' class

/// </summary>

class Participant

{

    private Chatroom _chatroom;

    private string _name;

    // Constructor

    public Participant(string name)

    {

        this._name = name;

    }

    // Gets participant name

    public string Name

    {

        get { return _name; }

    }

    // Gets chatroom

    public Chatroom Chatroom

    {

        set { _chatroom = value; }

        get { return _chatroom; }

    }

    // Sends message to given participant

    public void Send(string to, string message)

    {

        _chatroom.Send(_name, to, message);

    }

    // Receives message from given participant

    public virtual void Receive(string from, string message)

    {

        Console.WriteLine("{0} to {1}: '{2}'",from, Name, message);

    }

}

/// <summary>

/// A 'ConcreteCo ll eague' class

/// </summary>

class Beatle : Participant

{

    // Constructor

    public Beatle(string name)

        base(name)

    {

    }

    public override void Receive(string from, string message)

    {

        Console.Write("To a Beatle: ");

        base.Receive(from, message);

    }

}

/// <summary>

/// A 'ConcreteCo ll eague' class

/// </summary>

class NonBeatle : Participant

{

    // Constructor

    public NonBeatle(string name)

        base(name)

    {

    }

    public override void Receive(string from, string message)

    {

        Console.Write("To a non-Beatle: ");

        base.Receive(from, message);

    }

}

 

3、客户端代码

static void  Main (string[] args)

{

    // Create chatroom

    Chatroom chatroom = new Chatroom();

    // Create participants and register them

    Participant George = new Beatle("George");

    Participant Paul = new Beatle("Paul");

    Participant Ringo = new Beatle("Ringo");

    Participant John = new Beatle("John");

    Participant Yoko = new NonBeatle("Yoko");

 

    chatroom.Register(George);

    chatroom.Register(Paul);

    chatroom.Register(Ringo);

    chatroom.Register(John);

    chatroom.Register(Yoko);

   

    // Chatting participants

    Yoko.Send("John""Hi John!");

    Paul.Send("Ringo""A ll  you need is love");

    Ringo.Send("George""My sweet Lord");

    Paul.Send("John""Can't buy me love");

    John.Send("Yoko""My sweet love");

    // Wait for user

    Console.ReadKey();

}

3、运行结果

五、总结(Sum ma ry

中介者模式(Mediator Pattern),定义一个中介对象来封装系列对象之间的交互。中介者使各个对象不需要显示地相互引用,从而使其耦合性松散,而且可以独立地改变他们之间的交互。中介者模式一般应用于一组对象以定义良好但是复杂的方法进行通信的场合,以及想定制一个分布在多个类中的行为,而不想生成太多的子类的场合。

参考:http://www.dofactory.com/Patterns/PatternMediator.aspx

    本文转自灵动生活博客园博客,原文链接:http://www.cnblogs.com/ywqu/archive/2010/02/09/1666196.html ,如需转载请自行联系原作者

相关文章
|
2月前
|
设计模式 算法 数据库连接
PHP中的设计模式:提高代码的可维护性与扩展性本文旨在探讨PHP中常见的设计模式及其应用,帮助开发者编写出更加灵活、可维护和易于扩展的代码。通过深入浅出的解释和实例演示,我们将了解如何使用设计模式解决实际开发中的问题,并提升代码质量。
在软件开发过程中,设计模式是一套经过验证的解决方案模板,用于处理常见的软件设计问题。PHP作为流行的服务器端脚本语言,也有其特定的设计模式应用。本文将重点介绍几种PHP中常用的设计模式,包括单例模式、工厂模式和策略模式,并通过实际代码示例展示它们的具体用法。同时,我们还将讨论如何在实际项目中合理选择和应用这些设计模式,以提升代码的可维护性和扩展性。
60 4
|
1月前
|
设计模式 SQL 安全
PHP中的设计模式:单例模式的深入探索与实践在PHP开发领域,设计模式是解决常见问题的高效方案集合。它们不是具体的代码,而是一种编码和设计经验的总结。单例模式作为设计模式中的一种,确保了一个类仅有一个实例,并提供一个全局访问点。本文将深入探讨单例模式的基本概念、实现方式及其在PHP中的应用。
单例模式在PHP中的应用广泛,尤其在处理数据库连接、日志记录等场景时,能显著提高资源利用率和执行效率。本文从单例模式的定义出发,详细解释了其在PHP中的不同实现方法,并探讨了使用单例模式的优势与注意事项。通过对示例代码的分析,读者将能够理解如何在PHP项目中有效应用单例模式。
|
2月前
|
设计模式 数据库连接 PHP
PHP中的设计模式:如何提高代码的可维护性与扩展性在软件开发领域,PHP 是一种广泛使用的服务器端脚本语言。随着项目规模的扩大和复杂性的增加,保持代码的可维护性和可扩展性变得越来越重要。本文将探讨 PHP 中的设计模式,并通过实例展示如何应用这些模式来提高代码质量。
设计模式是经过验证的解决软件设计问题的方法。它们不是具体的代码,而是一种编码和设计经验的总结。在PHP开发中,合理地使用设计模式可以显著提高代码的可维护性、复用性和扩展性。本文将介绍几种常见的设计模式,包括单例模式、工厂模式和观察者模式,并通过具体的例子展示如何在PHP项目中应用这些模式。
|
2月前
|
设计模式
设计模式-工厂模式 Factory Pattern(简单工厂、工厂方法、抽象工厂)
这篇文章详细解释了工厂模式,包括简单工厂、工厂方法和抽象工厂三种类型。每种模式都通过代码示例展示了其应用场景和实现方法,并比较了它们之间的差异。简单工厂模式通过一个工厂类来创建各种产品;工厂方法模式通过定义一个创建对象的接口,由子类决定实例化哪个类;抽象工厂模式提供一个创建相关或依赖对象家族的接口,而不需要明确指定具体类。
设计模式-工厂模式 Factory Pattern(简单工厂、工厂方法、抽象工厂)
|
2月前
|
设计模式 SQL 安全
PHP中的设计模式:单例模式的深入探索与实践在PHP的编程实践中,设计模式是解决常见软件设计问题的最佳实践。单例模式作为设计模式中的一种,确保一个类只有一个实例,并提供全局访问点,广泛应用于配置管理、日志记录和测试框架等场景。本文将深入探讨单例模式的原理、实现方式及其在PHP中的应用,帮助开发者更好地理解和运用这一设计模式。
在PHP开发中,单例模式通过确保类仅有一个实例并提供一个全局访问点,有效管理和访问共享资源。本文详细介绍了单例模式的概念、PHP实现方式及应用场景,并通过具体代码示例展示如何在PHP中实现单例模式以及如何在实际项目中正确使用它来优化代码结构和性能。
44 2
|
2月前
|
设计模式 Java
设计模式--适配器模式 Adapter Pattern
这篇文章介绍了适配器模式,包括其基本介绍、工作原理以及类适配器模式、对象适配器模式和接口适配器模式三种实现方式。
|
4月前
|
设计模式 缓存 JavaScript
js设计模式实例
【7月更文挑战第2天】JavaScript设计模式包含工厂、单例、建造者、抽象工厂和代理模式等,它们是最佳实践和可重用模板,解决创建、职责分配和通信等问题。例如,工厂模式封装对象创建,单例确保全局唯一实例,建造者模式用于复杂对象构建,抽象工厂创建相关对象集合,而代理模式则控制对象访问。这些模式提升代码质量、可读性和灵活性,是高效开发的关键。
37 0
|
5月前
|
设计模式
设计模式-05建造者模式(Builder Pattern)
设计模式-05建造者模式(Builder Pattern)

热门文章

最新文章