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

单例模式

时间:2017-04-12 03:38:41      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:object   pre   led   public   turn   get   饿汉式   ret   ati   

单例模式的代码:

1、懒汉式:在对象不存在的时候才创建,考虑了多线程

class Singleton
    {
        //提供一个静态的属性
        private static Singleton singleton;
        private static readonly object syncRoot = new object();
        //将构造器私有,不让外部NEW
        private Singleton() { }
        //对外提供一个公有的方法可以得到这个类
        public static Singleton Getinstance() {
            if (singleton == null) {
                //加锁
                lock (syncRoot)
                { 
                if (singleton == null)
                {
                    singleton = new Singleton();
                }
                }
            }
           
            return singleton;
        }
    }

 

2、饿汉式:在自己被加载时就将自己实例化

public sealed class Singleton
    {
        private static readonly Singleton instance = new Singleton();
        private Singleton() {
            
        }
        public Singleton GetInstance() {
            return instance;
        }
    }

 

单例模式

标签:object   pre   led   public   turn   get   饿汉式   ret   ati   

原文地址:http://www.cnblogs.com/zhengwei-cq/p/6696565.html

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