码迷,mamicode.com
首页 > 其他好文 > 详细

设计模式 单例模式

时间:2014-12-14 13:11:19      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   ar   color   os   sp   on   div   

单例模式 (Singleton),保证一个类只有一个实例,并提供一个访问他的全局访问点。

bubuko.com,布布扣
    class Singleton
    {
        private static Singleton instance;
        private static readonly object syncRoot = new object();
        private Singleton()
        {
        }

        public static Singleton GetInstance()
        {
            if (instance == null)
            {

                lock (syncRoot)
                {

                    if (instance == null)
                    {
                        instance = new Singleton();
                    }
                }
            }
            return instance;
        }

    }
单例模式

 

设计模式 单例模式

标签:style   blog   http   ar   color   os   sp   on   div   

原文地址:http://www.cnblogs.com/YuanSong/p/4162457.html

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