复制代码 代码如下:
private static volatile T _instance = null;
private static object objLock = new Object();
private T()
{
}
public static T Instance
{
get
{
if (_instance == null)
{
lock (objLock)
{
if (_instance == null)
{
_instance = new T();
}
}
}
return _instance;
}
}
在必要的时候需如果要刷新当前instance,可以这样写:
复制代码 代码如下:
public static void RefreshInstance()
{
_instance = new T();
}
您可能感兴趣的文章:- C#单例模式(Singleton Pattern)详解
- c#单例模式(Singleton)的6种实现
- C#单例模式(Singleton Pattern)实例教程
- C#设计模式之Singleton模式