public class RedisManagerSingleton
{
private static RedisManagerSingleton _redisManagerSingleton;
private static readonly object _lock = new object();
private RedisManagerSingleton()
{
}
public static RedisManagerSingleton GetSingleton()
{
if (_redisManagerSingleton == null)
{
lock (_lock)
{
if (_redisManagerSingleton == null)
{
_redisManagerSingleton = new RedisManagerSingleton();
}
}
}
return _redisManagerSingleton;
}
}
相关文章
- 12-27Python 中的单例模式
- 12-27设计模式-原型模式
- 12-27Springboot 使用设计模式- 策略模式,字节跳动四面技术面
- 12-27设计模式-11享元模式(Flyweight Pattern)
- 12-27设计模式 笔记 享元模式 Flyweight
- 12-27设计模式——Factory Method
- 12-27设计模式-责任链模式
- 12-27设计模式のCommand Pattern(命令模式)----行为模式
- 12-27设计模式——备忘录模式
- 12-27适配器模式-设计模式