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

性能比较好的单例写法

时间:2019-10-27 18:59:55      阅读:97      评论:0      收藏:0      [点我收藏+]

标签:not   单例   依赖注入   ati   turn   代码   nes   ted   single   

2019/10/27, .Net c#代码片段

摘要:一种性能比较好的单例写法
参考来源

其他单例思路:
1.使用依赖注入,注册为单例模式
2.使用双重锁机制

public sealed class SingletonBase//应该使用密封类防止派生
{
    //写单例的方法
    //public string Getxxx(){ }
    private SingletonBase()
    {
    }

    public static SingletonBase Instance
    {
        get
        {
            return Nested.instance;
        }
    }
    private class Nested
    {
        //显式静态构造函数
        // not to mark type as beforefieldinit
        static Nested()
        {
        }

        internal static readonly SingletonBase instance = new SingletonBase();
    }
}

性能比较好的单例写法

标签:not   单例   依赖注入   ati   turn   代码   nes   ted   single   

原文地址:https://www.cnblogs.com/kasnti/p/11748198.html

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