zoukankan      html  css  js  c++  java
  • Singleton模式(一) 简单多线程计数器

    1. 经典的设计模式中的代码

    public class Singleton
        {
            private static Singleton instance;   // 唯一实例
            protected Singleton() { }   // 封闭客户程序的直接实例化

            public static Singleton Instance    
            {
                get
                {
                    if (instance == null)
                        instance = new Singleton();
                    return instance;
                }
            }
        }

      在多线程环境下存在缺陷, 最终将会保存最后创建的那个实例

    2. 改进后的多线程Singleton

    class Singleton
        {
            private Singleton() { }
            [ThreadStatic]
            public static readonly Singleton Instance = new Singleton();
        }

    3. 线程计数器

    public class ThreadCounter
        {
            private ThreadCounter() { }
            public static readonly ThreadCounter Instance = new ThreadCounter();

            private int value;
            public int Next { get { return ++value; } }
            public void Reset() { value = 0; }
        }

    4. 调用代码

      ThreadCounter.Instance.Next

    技术改变世界
  • 相关阅读:
    mysql数据库的相关练习题及答案
    数据库一
    python的协程
    jquery的常用知识点
    diehard–让你的程序更健壮
    迷宫塔生成工具
    编程解决谁是凶手的问题
    ClojureScript实现xpath定位器生成-1
    使用ClojureScript进行chrome扩展开发
    AES CBC模式下的Padding Oracle解密
  • 原文地址:https://www.cnblogs.com/davidgu/p/2526151.html
Copyright © 2011-2022 走看看