• 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

    技术改变世界
  • 相关阅读:
    串的模式匹配
    Linux_ch02
    Linux操作简介
    Stack&Queue
    单链表
    工作中用到的oracle字符串分割整理
    maven_spring mvc_mina_dome(实体,文件,批传)(spring mina 初学dome)
    求整数和与均值
    简单计算器
    苹果和虫子2
  • 原文地址:https://www.cnblogs.com/davidgu/p/2526151.html
Copyright © 2020-2023  润新知