科技行者

行者学院 转型私董会 科技行者专题报道 网红大战科技行者

知识库

知识库 安全导航

至顶网软件频道C#设计模式之Prototype

C#设计模式之Prototype

  • 扫一扫
    分享文章到微信

  • 扫一扫
    关注官方公众号
    至顶头条

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

作者:ghost 来源:CSDN 2007年9月24日

关键字: ghost C# 设计模式 Prototype

  • 评论
  • 分享微博
  • 分享邮件
名称:Prototype
结构:
 
意图:
用原型实例指定创建对象的种类,并且通过拷贝这些原型创建新的对象。
 
适用性 :
  1. 当要实例化的类是在运行时刻指定时,例如,通过动态装载;
  2. 为了避免创建一个与产品类层次平行的工厂类层次时;
  3. 当一个类的实例只能有几个不同状态组合中的一种时。建立相应数目的原型并克隆它们可能比每次用合适的状态手工实例化该类更方便一些。  
示例代码
// Prototype
namespace Prototype_DesignPattern
{
    using System;

    // Objects which are to work as prototypes must be based on classes which
    // are derived from the abstract prototype class
    abstract class AbstractPrototype
    {
        abstract public AbstractPrototype CloneYourself();
    }

    // This is a sample object
    class MyPrototype : AbstractPrototype
    {
        override public AbstractPrototype CloneYourself()
        {
            return ((AbstractPrototype)MemberwiseClone());
        }
        // lots of other functions go here!
    }

    // This is the client piece of code which instantiate objects
    // based on a prototype.
    class Demo
    {
        private AbstractPrototype internalPrototype;

        public void SetPrototype(AbstractPrototype thePrototype)
        {
            internalPrototype = thePrototype;
        }

        public void SomeImportantOperation()
        {
            // During Some important operation, imagine we need
            // to instantiate an object - but we do not know which. We use
            // the predefined prototype object, and ask it to clone itself.

            AbstractPrototype x;
            x = internalPrototype.CloneYourself();
            // now we have two instances of the class which as as a prototype
        }
    }

    /// <summary>
    /// Summary description for Client.
    /// </summary>
    public class Client
    {
        public static int Main(string[] args)
        {
            Demo demo = new Demo();
            MyPrototype clientPrototype = new MyPrototype();
            demo.SetPrototype(clientPrototype);
            demo.SomeImportantOperation();

            return 0;
        }
    }
}


Trackback: http://tb.blog.csdn.net/TrackBack.aspx?PostId=1681411

    • 评论
    • 分享微博
    • 分享邮件
    邮件订阅

    如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。

    重磅专题
    往期文章
    最新文章