设计模式>单例模式

 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;
        }
    }
原文地址:https://www.cnblogs.com/icxldd/p/15796061.html