二十四种设计模式:原型模式(Prototype Pattern)

原型模式(Prototype Pattern)

介绍
用原型实例指定创建对象的种类,并且通过拷贝这个原型来创建新的对象。

示例
有一个Message实体类,现在要克隆它。

  MessageModel

using System;
using System.Collections.Generic;
using System.Text;

namespace Pattern.Prototype
{
    /// <summary>
    /// Message实体类
    /// </summary>
    public class MessageModel
    {
        /// <summary>
        /// 构造函数
        /// </summary>
        /// <param name="msg">Message内容</param>
        /// <param name="pt">Message发布时间</param>
        public MessageModel(string msg, DateTime pt)
        {
            this._message = msg;
            this._publishTime = pt;
        }

        private string _message;
        /// <summary>
        /// Message内容
        /// </summary>
        public string Message
        {
            get { return _message; }
            set { _message = value; }
        }

        private DateTime _publishTime;
        /// <summary>
        /// Message发布时间
        /// </summary>
        public DateTime PublishTime
        {
            get { return _publishTime; }
            set { _publishTime = value; }
        }
    }
}

  ShallowCopy

using System;
using System.Collections.Generic;
using System.Text;

namespace Pattern.Prototype
{
    /// <summary>
    /// 浅拷贝
    /// </summary>
    public class ShallowCopy : ICloneable
    {
        /// <summary>
        /// 构造函数
        /// </summary>
        public ShallowCopy()
        {

        }

        /// <summary>
        /// 实现ICloneable的Clone()方法
        /// </summary>
        /// <returns></returns>
        public Object Clone()
        {
            return this.MemberwiseClone();
        }

        private MessageModel _mm;
        /// <summary>
        /// Message实体对象
        /// </summary>
        public MessageModel MessageModel
        {
            get { return _mm; }
            set { _mm = value; }
        }
    }
}

  DeepCopy

using System;
using System.Collections.Generic;
using System.Text;

namespace Pattern.Prototype
{
    /// <summary>
    /// 深拷贝
    /// </summary>
    public class DeepCopy : ICloneable
    {
        /// <summary>
        /// 构造函数
        /// </summary>
        public DeepCopy()
        {

        }

        /// <summary>
        /// 构造函数
        /// </summary>
        /// <param name="mm">Message实体对象</param>
        public DeepCopy(MessageModel mm)
        {
            _mm = mm;
        }

        /// <summary>
        /// 实现ICloneable的Clone()方法
        /// </summary>
        /// <returns></returns>
        public Object Clone()
        {
            return new DeepCopy(new MessageModel(_mm.Message, _mm.PublishTime));
        }

        private MessageModel _mm;
        /// <summary>
        /// Message实体对象
        /// </summary>
        public MessageModel MessageModel
        {
            get { return _mm; }
            set { _mm = value; }
        }
    }
}

  Client

using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;

using Pattern.Prototype;

public partial class Prototype : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
        Response.Write("ShallowCopy演示如下:<br />");
        ShowShallowCopy();

        Response.Write("DeepCopy演示如下:<br />");
        ShowDeepCopy();
    }

    private void ShowShallowCopy()
    {
        ShallowCopy sc = new ShallowCopy();
        sc.MessageModel = new MessageModel("ShallowCopy", DateTime.Now);

        ShallowCopy sc2 = (ShallowCopy)sc.Clone();

        Response.Write(sc.MessageModel.Message);
        Response.Write("<br />");
        Response.Write(sc2.MessageModel.Message);
        Response.Write("<br />");

        sc.MessageModel.Message = "ShallowCopyShallowCopy";

        Response.Write(sc.MessageModel.Message);
        Response.Write("<br />");
        Response.Write(sc2.MessageModel.Message);
        Response.Write("<br />");
    }

    private void ShowDeepCopy()
    {
        DeepCopy sc = new DeepCopy();
        sc.MessageModel = new MessageModel("DeepCopy", DateTime.Now);

        DeepCopy sc2 = (DeepCopy)sc.Clone();

        Response.Write(sc.MessageModel.Message);
        Response.Write("<br />");
        Response.Write(sc2.MessageModel.Message);
        Response.Write("<br />");

        sc.MessageModel.Message = "DeepCopyDeepCopy";

        Response.Write(sc.MessageModel.Message);
        Response.Write("<br />");
        Response.Write(sc2.MessageModel.Message);
        Response.Write("<br />");
    }
}

  运行结果
  ShallowCopy演示如下:
  ShallowCopy
  ShallowCopy
  ShallowCopyShallowCopy
  ShallowCopyShallowCopy
  DeepCopy演示如下:
  DeepCopy
  DeepCopy
  DeepCopyDeepCopy
  DeepCopy

时间: 2024-10-24 03:40:10

二十四种设计模式:原型模式(Prototype Pattern)的相关文章

二十四种设计模式:适配器模式(Adapter Pattern)

适配器模式(Adapter Pattern) 介绍将一个类的接口转换成客户希望的另外一个接口.Adapter模式使得原本由于接口不兼容而不能一起工作的那些类可以一起工作. 示例有一个Message实体类,某个类对它的操作有Insert()和Get()方法.现在需要把这个类转到另一个接口,分别对应Add()和Select()方法. MessageModel using System; using System.Collections.Generic; using System.Text; name

二十四种设计模式:单例模式(Singleton Pattern)

单例模式(Singleton Pattern) 介绍保证一个类仅有一个实例,并提供一个访问它的全局访问点. 示例保证一个类仅有一个实例. Singleton using System; using System.Collections.Generic; using System.Text; namespace Pattern.Singleton { /// <summary> /// 泛型实现单例模式 /// </summary> /// <typeparam name=&q

二十四种设计模式:迭代器模式(Iterator Pattern)

迭代器模式(Iterator Pattern) 介绍提供一种方法顺序访问一个聚合对象中各个元素,而又不需暴露该对象的内部表示. 示例有一个Message实体类,某聚合对象内的各个元素均为该实体对象,现在要提供一种方法顺序地访问这个聚合对象中的各个元素. MessageModel using System; using System.Collections.Generic; using System.Text; namespace Pattern.Iterator { /// <summary>

二十四种设计模式:策略模式(Strategy Pattern)

策略模式(Strategy Pattern) 介绍定义一系列的算法,把它们一个个封装起来,并且使它们可相互替换.本模式使得算法的变化可独立于使用它的客户. 示例有一个Message实体类,对它的操作有Insert()和Get()方法,持久化数据在SqlServer数据库中或Xml文件里(两种可互换的算法).由客户端决定使用哪种算法. MessageModel using System; using System.Collections.Generic; using System.Text; na

二十四种设计模式:解释器模式(Interpreter Pattern)

解释器模式(Interpreter Pattern) 介绍给定一个语言, 定义它的文法的一种表示,并定义一个解释器,该解释器使用该表示来解释语言中的句子. 示例有一个Message实体类,某个类对它的操作有Get()方法.现在要求用具有某一规则的中文语法来执行这个操作. MessageModel using System; using System.Collections.Generic; using System.Text; namespace Pattern.Interpreter { //

二十四种设计模式:享元模式(Flyweight Pattern)

享元模式(Flyweight Pattern) 介绍运用共享技术有效地支持大量细粒度的对象. 示例有一个Message实体类,某些对象对它的操作有Insert()和Get()方法,现在要运用共享技术支持这些对象. MessageModel using System; using System.Collections.Generic; using System.Text; namespace Pattern.Flyweight { /// <summary> /// Message实体类 ///

二十四种设计模式:外观模式(Facade Pattern)

外观模式(Facade Pattern) 介绍为子系统中的一组接口提供一个一致的界面,Facade模式定义了一个高层接口,这个接口使得这一子系统更加容易使用. 示例有一个Message实体类,某对象对它的操作有Get()方法,另外还有一个对象有一个Validate()方法来判断用户是否有权限.现在提供一个高层接口来封装这两个方法. MessageModel using System; using System.Collections.Generic; using System.Text; nam

二十四种设计模式:提供者模式(Provider Pattern)

提供者模式(Provider Pattern) 介绍为一个API进行定义和实现的分离. 示例有一个Message实体类,对它的操作有Insert()和Get()方法,持久化数据在SqlServer数据库中或Xml文件里.根据配置文件中的配置来决定数据持久化方案是使用SqlServer数据库还是Xml文件. MessageModel using System; namespace Pattern.Provider { /// <summary> /// Message实体类 /// </s

二十四种设计模式:桥接模式(Bridge Pattern)

桥接模式(Bridge Pattern) 介绍将抽象部分与它的实现部分分离,使它们都可以独立地变化. 示例有一个Message实体类,对它的操作有Insert()和Get()方法,现在使这些操作的抽象部分和实现部分分离. MessageModel using System; using System.Collections.Generic; using System.Text; namespace Pattern.Bridge { /// <summary> /// Message实体类 //