设为首页 加入收藏

TOP

设计模式-原型模式(一)
2019-09-03 03:33:50 】 浏览:53
Tags:设计模式 原型 模式

前言

点击查看:设计模式系列 

原型模式(Prototype)

理解:原型模式属于创建型模式,与工厂,单件,生成器模式有相似点,就是创建对象,而原型模式最大的特点就是对一个基类对象进行克隆复制创建出模型一样的副本,进行操作。

举例:

即将开学啦,就来个入学考试吧

基对象(一般为接口,抽象类):考试题(样卷)

原型模式的复职克隆:根据需要印刷考卷,这里的考卷都是复制考试题样卷

客户端:学生答卷,同一套试卷,学生做题不可能一模一样

类图:

接口:试卷样例代码

   /// <summary>
    /// 选答题
    /// </summary>
    public class SelectTest
    {
        private string other;
        public string 你老婆多大
        {
            get
            {
                return this.other;
            }
            set
            {
                this.other = value;
            }
        }
    }
    /// <summary>
    /// 面试题
    /// </summary>
    public interface Itest
    {
        Itest Clone();

        string 知道设计模式吗
        {
            get;
            set;
        }
        string 设计模式有几种
        {
            get;
            set;
        }
        string 你知道那些
        {
            get;
            set;
        }
        SelectTest 附加题
        {
            get;
            set;
        }

        Test Test
        {
            get;
            set;
        }

        Test Test1
        {
            get;
            set;
        }
    }

复制克隆:复印机

 /// <summary>
    /// 继承Itest接口
    /// </summary>
    public class Test : Itest
    {
        private string one;
        private string two;
        private string three;
        private SelectTest other=new SelectTest();
        public string 知道设计模式吗
        {
            get
            {
                return this.one;
            }
            set
            {
                this.one = value;
            }
        }
        public string 设计模式有几种
        {
            get
            {
                return this.two;
            }
            set
            {
                this.two = value;
            }
        }
        public string 你知道那些
        {
            get
            {
                return this.three;
            }
            set
            {
                this.three = value;
            }
        }
        public SelectTest 附加题
        {
            get
            {
                return this.other;
            }
            set
            {
                this.other = value;
            }
        }
        #region IColorDemo 成员

        public Itest Clone()
        {
            //克隆当前类
            return (Itest)this.MemberwiseClone();
        }
        #endregion
    }

客户端,发卷做题

  static void Main()
        {
            //印刷试卷
            Itest test = new Test();
            //复制样本试卷
            Itest test1 = test.Clone();
            
            //考生1
            test.设计模式有几种 = "23";
            test.附加题.你老婆多大 = "18";

            //考生2
            test1.设计模式有几种 = "24";
            test1.附加题.你老婆多大 = "20";

            //显示考生答卷内容
            Console.WriteLine("test设计模式有几种:" + test.设计模式有几种);    //23
            Console.WriteLine("test附加题.你老婆多大:" + test.附加题.你老婆多大);    //20
            Console.WriteLine("test1设计模式有几种:" + test1.设计模式有几种);   //24
            Console.WriteLine("test1附加题.你老婆多大:" + test1.附加题.你老婆多大);  //20

            Console.ReadKey();
        }

注意:这里两个人答得不一样,为什么附加题中,老婆年龄都为20?

这里涉及到深拷贝,浅拷贝问题,值类型是放在栈上的,拷贝之后,会自会在站上重新add一个,而class属于引用类型,拷贝之后,栈上重新分配啦一个指针,可指针却指向同一个位置的资源。浅拷贝,只拷贝值类型,深拷贝,引用类型也拷贝复制。

解决方案: 

  public Itest Clone()
        {
            //克隆当前类
            Itest itst= (Itest)this.MemberwiseClone();
            SelectTest st = new SelectTest();
            st.你老婆多大 = this.other.你老婆多大;
            itst.附加题 = st;
            return itst;

        } 

使用序列化解决

/// <summary>
    /// 选答题
    /// </summary>
    [Serializable] 
    public class SelectTest
    {
        private string other;
        public string 你老婆多大
        {
            get
            {
                return this.other;
            }
            set
            {
                this.other = value;
            }
        }
    }
    /// <summary>
    /// 面试题
    /// </summary>
    public interface Itest
    {
        Itest Clone();

        string 知道设计模式吗
        {
            get;
            set;
        }
        string 设计模式有几种
        {
            get;
            set;
        }
        string 你知道那些
        {
            get;
            set;
        }
        SelectTest 附加题
        {
            get;
            set;
        }
     
    }

    /// <summary>
    /// 继承Itest接口
    /// </summary>
    [Serializable] 
    public class Test : Itest
    {
        private string one;
        private string two;
        private string three;
        private SelectTest other=new SelectTest();
        public string 知道设计模式吗
        {
            get
            {
                return this.one;
            }
            set
            {
                this.one = value;
            }
        }
        public string 设计模式有几种
        {
            get
            {
                return this.two;
            }
            set
            {
首页 上一页 1 2 下一页 尾页 1/2/2
】【打印繁体】【投稿】【收藏】 【推荐】【举报】【评论】 【关闭】 【返回顶部
上一篇23种设计模式简介 下一篇网页设计中透明效果的使用技巧

最新文章

热门文章

Hot 文章

Python

C 语言

C++基础

大数据基础

linux编程基础

C/C++面试题目