zoukankan      html  css  js  c++  java
  • Singleton模式

    Singleton模式的实现基于两个要点:

      1)不直接用类的构造函数,而另外提供一个Public的静态方法来构造类的实例。通常这个方法取名为Instance。Public保证了它的全局可见性,静态方法保证了不会创建出多余的实例。

      2)将类的构造函数设为Private,即将构造函数"隐藏"起来,任何企图使用构造函数创建实例的方法都将报错。这样就阻止了开发人员绕过上面的Instance方法直接创建类的实例。

      通过以上两点就可以完全控制类的创建:无论有多少地方需要用到这个类,它们访问的都是类的唯一生成的那个实例。以下C#代码展现了两种实现Singleton模式的方式,开发人员可以根据喜好任选其一。

      实现方式一:Singleton.cs

      using System;

      class SingletonDemo

      { private static SingletonDemo theSingleton = null;

      private SingletonDemo() {}

      public static SingletonDemo Instance()

      { if (null == theSingleton)

      {

      theSingleton = new SingletonDemo();

      }

      return theSingleton;

      }

      static void Main(string[] args)

      { SingletonDemo s1 = SingletonDemo.Instance();

      SingletonDemo s2 = SingletonDemo.Instance();

      if (s1.Equals(s2))

      { Console.WriteLine("see, only one instance!");

      }

      }

      }

      与之等价的另外一种实现方式是:Singleton.cs:

      using System;

      class SingletonDemo

      { private static SingletonDemo theSingleton = new SingletonDemo();

      private SingletonDemo() {}

      public static SingletonDemo Instance()

      { return theSingleton;

      }

      static void Main(string[] args)

      { SingletonDemo s1 = SingletonDemo.Instance();

      SingletonDemo s2 = SingletonDemo.Instance();

      if (s1.Equals(s2))

      { Console.WriteLine("see, only one instance!");

      }

      }

      }

  • 相关阅读:
    chrome 浏览器与chromedriver 对应关系以及 对应的驱动下载
    pip 安装six 报错 ModuleNotFoundError: No module named 'pip._internal.cli.main'
    django 连接远程mysql 报错 django.db.utils.OperationalError: (1045, "Access denied for user 'root'@'localhost' (using password: NO)")
    MySQL8.0允许外部访问
    Linux 安装mysql
    php导出导入excel插件
    解决php导出csv文件utf8中文乱码问题
    Docker 安装mysql5.6
    centos7 设置静态IP
    U盘制作centos7系统并安装
  • 原文地址:https://www.cnblogs.com/sohobloo/p/2312330.html
Copyright © 2011-2022 走看看