码迷,mamicode.com
首页 > Windows程序 > 详细

C# 单例模式

时间:2017-08-20 18:24:59      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:div   pre   ==   style   nbsp   on()   let   span   ons   

        #region Singleton
        class Singleton
        {
            private static Singleton singleton;
            private static object lockObj = new object();
            private Singleton()
            {
            }
            public static Singleton GetInstance()
            {
                if (singleton == null)
                {
                    lock (lockObj)
                    {
                        if (singleton == null)
                        {
                            singleton = new Singleton();
                        }
                    }
                }
                return singleton;
            }
        }
        static void SingletonTest()
        {
            Singleton s1 = Singleton.GetInstance();
            Singleton s2 = Singleton.GetInstance();
            if (s1 == s2)
            {
                Console.WriteLine("The same instance");
            }
        }
        #endregion   

 

C# 单例模式

标签:div   pre   ==   style   nbsp   on()   let   span   ons   

原文地址:http://www.cnblogs.com/zxxxx/p/7400502.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!