设计模式 单例模式

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

    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;
        }

    }
单例模式

 

posted on 2014-12-14 12:59  YuanSong  阅读(206)  评论(0编辑  收藏  举报

导航