亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

.NET原型模式的定義及實例用法

發布時間:2021-09-09 18:33:36 來源:億速云 閱讀:127 作者:chen 欄目:開發技術

這篇文章主要介紹“.NET原型模式的定義及實例用法”,在日常操作中,相信很多人在.NET原型模式的定義及實例用法問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”.NET原型模式的定義及實例用法”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

原型模式的定義:

用原型實例指定創建對象的種類,并且通過拷貝這些原型創建新的對象。

原型模式結構圖:

.NET原型模式的定義及實例用法

創建型模式中一個比較特殊的模式-原型模式,有個最大的特點是克隆一個現有的對象,這個克隆的結果有2種,一種是淺度復制,另一種是深度復制。

創建型模式一般是用來創建一個新的對象,然后我們使用這個對象完成一些對象的操作,我們通過原型模式可以快速的創建一個對象而不需要提供專門的new()操作就可以快速完成對象的創建,這無疑是一種非常有效的方式,快速的創建一個新的對象。

1.原型模式:淺度復制

定義一個接口, 用來表述所有的顏色對象接口

  /// <summary>
  /// 顏色接口
  /// </summary>
  public interface IColor
  {
    IColor Clone();
    int Red { get; set; }
    int Green { get; set; }
    int Blue { get; set; }
  }

給出紅色的具體實現代碼:

  public class RedColor:IColor
  {
    public int Red { get; set; }
    public int Green { get; set; }
    public int Blue { get; set; }

    public IColor Clone()
    {
      return (IColor)this.MemberwiseClone(); 
    } 
  }

具體的測試代碼如下:

static void Main(string[] args)
    {
      IColor color = new RedColor();
      color.Red = 255;
      Console.WriteLine("color -red " + color.Red); //225
      IColor color1 = color.Clone();
      color1.Red = 224;
      Console.WriteLine("color1-red " + color1.Red);//224
      Console.WriteLine("color -red " + color.Red); //225
    }

.NET原型模式的定義及實例用法

可以發現:在我們修改color1對象的Red屬性值,沒有對color的屬性參生影響,即對象副本的修改不會影響對象本身的狀態。

2.原型模式:深度復制

深復制考慮的情況相對來說就會比較復雜,因為有可能對象是之間有繼承關系或者引用關系的時候,可能我們深復制的時候就需要注意.一般來說深復制一方面可以采用種簡單的深復制對象的時候的方案,還可以通過序列化的形式來進行對象的復制。下面通過序列化的形式來實現原型模式:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication4
{
  /// <summary>
  /// 顏色接口
  /// </summary>
  public interface IColor
  {
    IColorDemo Clone();

    int Red { get; set; }
    int Green { get; set; }
    int Blue { get; set; }
    Factroy f{get;set;}
  }

  /// <summary>
  /// 生產顏色的工廠信息
  /// </summary>
  [Serializable]
  public class Factroy
  {
    public string name { get; set; }
  }
}

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication4
{
  /// <summary>
  /// 顏色
  /// </summary>
  [Serializable]
  public class RedColor:IColor
  {
    public int Red { get; set; }
    public int Green { get; set; }
    public int Blue { get; set; }
    public Factroy f { get; set; }

    public IColor Clone()
    {
      SerializableHelper s = new SerializableHelper();
      string target = s.Serializable(this);
      return s.Derializable<IColor>(target); 
    } 
  }
}

序列化幫助類:

/// <summary>
  /// 序列化和反序列化輔助類
  /// </summary>
  public class SerializableHelper
  {
    public string Serializable(object target)
    {
      using (MemoryStream stream = new MemoryStream())
      {
        new BinaryFormatter().Serialize(stream, target);

        return Convert.ToBase64String(stream.ToArray());
      }
    }

    public object Derializable(string target)
    {
      byte[] targetArray = Convert.FromBase64String(target);

      using (MemoryStream stream = new MemoryStream(targetArray))
      {
        return new BinaryFormatter().Deserialize(stream);
      }
    }

    public T Derializable<T>(string target)
    {
      return (T)Derializable(target);
    }
  }

測試:

  static void Main(string[] args)
  {
    IColor color = new RedColor();
    color.Red = 255;
    color.f = new Factroy() { name="湖北工廠" };
    Console.WriteLine("color - Factroy:" + color.f.name); //湖北工廠

    IColor color1 = color.Clone();
    color1.Red = 234;
    color1.f.name = "北京工廠";
    Console.WriteLine("color1- Factroy:" + color1.f.name); //北京工廠
    Console.WriteLine("color - Factroy:" + color.f.name); //湖北工廠
    Console.Read();
  }

程序的運行結果如下:

.NET原型模式的定義及實例用法

結論:通過序列化和反序列化形成新的對象。其實只要是項目中要使用原型模式進行對象復制的情況下,都可以通過序列化的形式來進行深復制。

到此,關于“.NET原型模式的定義及實例用法”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

张家界市| 吉隆县| 禹城市| 新乡市| 鄂温| 张掖市| 景宁| 饶平县| 天长市| 安新县| 赤水市| 昌图县| 布拖县| 叙永县| 新河县| 邵武市| 田东县| 中阳县| 如东县| 东源县| 武隆县| 宁强县| 泸水县| 灵台县| 曲松县| 阳春市| 铜陵市| 新建县| 彰武县| 霍林郭勒市| 河东区| 甘肃省| 资源县| 东阳市| 大连市| 本溪| 徐闻县| 郎溪县| 延庆县| 固始县| 安国市|