程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> 關於C語言 >> 設計模式(C#) - 原型模式(Prototype Pattern)(2)

設計模式(C#) - 原型模式(Prototype Pattern)(2)

編輯:關於C語言

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; }
    }
  }
}

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved