zoukankan      html  css  js  c++  java
  • 单例的两种实现方式

    Code
    using System;
    using System.Collections.Generic;
    using System.Text;

    namespace OODemo
    {
    /// <summary>
    /// 饿汉式单例模式,在第一次加载时就实例化
    /// </summary>
    public class Singleton
    {

    private static readonly Singleton instance=new Singleton();
    private Singleton()
    {

    }
    public static Singleton GetInstance()
    {
    return instance;
    }


    }

    /// <summary>
    /// 懒汉式单例模式,在第一次被引用时开始实例化
    /// </summary>
    public class SingletonPattern
    {
    private static SingletonPattern instance;
    private static object obj;
    private SingletonPattern(){}
    public static SingletonPattern GetInstance()
    {
    if (instance == null)
    {
    lock (obj)
    {
    if (instance == null)
    {
    return new SingletonPattern();
    }

    }
    }
    }
    }


    }

  • 相关阅读:
    外观模式
    适配器模式
    桥接模式
    中文词频统计
    英文词频统计
    字符串练习
    Python基础
    熟悉常用的Linux操作
    作业
    递归下降分析法
  • 原文地址:https://www.cnblogs.com/songtzu/p/2630066.html
Copyright © 2011-2022 走看看