单例模式
-
它只有一个实例
-
向外提供访问点
-
考虑到多线程情况下创建实例
分类
- 懒汉式
不支持多线程
using System;
namespace 单例模式
{
/// <summary>
/// 它只有一个实例
/// 向外提供访问点
/// </summary>
public class Signleton
{
private Signleton() { }
private static Signleton instance;
/// <summary>
/// 多线程访问
/// </summary>
private static object locker = new object();
public Signleton GetInstance()
{
if (instance == null)
{
lock (locker)
{
if (instance == null)
{
instance = new Signleton();
}
}
}
return instance;
}
}
}
标签:01,Signleton,模式,instance,实例,private,单例,多线程
From: https://www.cnblogs.com/thomerson/p/16795927.html