冰楓論壇

標題: [C#] 設計模式 Singleton 的六種方法 [打印本頁]

作者: whitefox    時間: 2023-5-29 13:27
標題: [C#] 設計模式 Singleton 的六種方法
本帖最後由 whitefox 於 2023-5-29 13:29 編輯

在討論軟體工程的設計模式中,Singleton 單一實例化模式是最常見的方法之一
這提出六種常見的實作方式
  1. public sealed class Singleton1
  2. {
  3.     private static Singleton1 instance = null;
  4.     private Singleton1() { }
  5.     public static Singleton1 Instance
  6.     {
  7.         get
  8.         {
  9.             if (instance == null)
  10.             {
  11.                 instance = new Singleton1();
  12.             }
  13.             return instance;
  14.         }
  15.     }
  16. }
複製代碼
  1. public sealed class Singleton2
  2. {
  3.     private static Singleton2 instance = null;
  4.     private static readonly object obj = new object();
  5.     private Singleton2() { }
  6.     public Singleton2 Instance
  7.     {
  8.         get
  9.         {
  10.             lock (obj)
  11.             {
  12.                 if (instance == null)
  13.                 {
  14.                     instance = new Singleton2();
  15.                 }
  16.                 return instance;
  17.             }
  18.         }
  19.     }
  20. }
複製代碼
  1. public sealed class Singleton3
  2. {
  3.     private static Singleton3 instance = null;
  4.     private static object obj = new object();
  5.     private Singleton3() { }
  6.     public static Singleton3 Instance
  7.     {
  8.         get
  9.         {
  10.             if (instance == null)
  11.             {
  12.                 lock (obj)
  13.                 {
  14.                     if (instance == null)
  15.                     {
  16.                         instance = new Singleton3();
  17.                     }
  18.                 }
  19.             }
  20.             return instance;
  21.         }
  22.     }
  23. }
複製代碼
  1. public sealed class Singleton4
  2. {
  3.     private static readonly Singleton4 instance = new Singleton4();
  4.     /// <summary>
  5.     /// 顯式的靜態構造函數用來告訴 C# 編譯器在其内容實例化之前不要標註其類型
  6.     /// </summary>
  7.     static Singleton4() { }
  8.     private Singleton4() { }
  9.     public static Singleton4 Instance { get { return instance; } }
  10. }
複製代碼
  1. public sealed class Singleton5
  2. {
  3.     private Singleton5() { }
  4.     public static Singleton5 Instance { get { return Nested.instance; } }
  5.     private class Nested
  6.     {
  7.         static Nested() { }
  8.         internal static readonly Singleton5 instance = new Singleton5();
  9.     }
  10. }
複製代碼
  1. public sealed class Singleton6
  2. {
  3.     private static readonly Lazy<Singleton6> lazy =
  4.            new Lazy<Singleton6>(()=> new Singleton6());
  5.     public static Singleton6 Instance { get { return lazy.Value; } }
  6.     private Singleton6() { }
  7. }
複製代碼
基本上方法1太過脆弱之外,其他實現方式應該在考量程式效能與執行時是否需要更早使用到類別中的靜態成員來抉擇實現方式
其他方法綜合比較下
方法2是比較容易編寫且加鎖執行也不會太慢
方法3與方法5的效能會受影響,但在構造函數不複雜下仍是建議的方法
方法4是效能與安全兼具的實作方法,但有比類別實例化更早應用的靜態成員,就不適合

個人經驗是使用方法3為主




歡迎光臨 冰楓論壇 (https://bingfong.com/) Powered by 冰楓