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

”靠谱的“单例模式

时间:2015-03-02 18:11:06      阅读:107      评论:0      收藏:0      [点我收藏+]

标签:

//静态构造函数的单例模式

public sealed class Singleton
{
    private static readonly Singleton _instance = new Singleton();


    static Singleton()
    {
    }

    private Singleton()
    {
    }

    public static Singleton Instance
    {
        get
        {
            return _instance;
        }
    }
}

  

//延迟构造对象的单例模式

/// <summary>
/// 在.Net4.0或以上版本才行
/// </summary>
public sealed class Singleton
{
    private static readonly Lazy<Singleton> lazy =
        new Lazy<Singleton>(() => new Singleton());

    public static Singleton Instance { get { return lazy.Value; } }

    private Singleton()
    {
    }
}

  

”靠谱的“单例模式

标签:

原文地址:http://www.cnblogs.com/zzq-include/p/4309186.html

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