C# singleton如何实现线程安全

avatar
作者
筋斗云
阅读量:0

在C#中实现线程安全的singleton可以通过以下几种方法:

  1. 使用双重检查锁定(Double-Checked Locking):
public sealed class Singleton {     private static Singleton instance;     private static readonly object lockObject = new object();      private Singleton() { }      public static Singleton Instance     {         get         {             if (instance == null)             {                 lock (lockObject)                 {                     if (instance == null)                     {                         instance = new Singleton();                     }                 }             }             return instance;         }     } } 
  1. 使用Lazy类型:
public sealed class Singleton {     private static readonly Lazy<Singleton> lazy = new Lazy<Singleton>(() => new Singleton());          public static Singleton Instance { get { return lazy.Value; } }      private Singleton() { } } 
  1. 使用静态构造函数:
public sealed class Singleton {     private static readonly Singleton instance = new Singleton();      static Singleton() { }      private Singleton() { }      public static Singleton Instance     {         get         {             return instance;         }     } } 

以上三种方法都可以确保在多线程环境下创建唯一的实例并保证线程安全性。其中,双重检查锁定是一种常用的方式,Lazy类型是.NET Framework提供的延迟实例化的方式,静态构造函数也可以确保在调用实例之前进行初始化。根据具体需求选择适合的方式来实现线程安全的singleton。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!