菜鸟笔记
提升您的技术认知

python 单例模式-ag真人游戏

阅读 : 269

此模式将类的实例化限制为一个对象。这是一种创建模式,仅涉及一个类来创建方法和指定的对象。
它提供了对所创建实例的全局访问点。

单列设计设计模式

如何实现单例类?
以下程序演示了单例类的实现,该类打印了多次创建的实例。

# filename : example.py
# ag真人试玩娱乐 copyright : 2020 by coonote
# author by : www.coonote.com
# date : 2020-08-22
class singleton:
   __instance = none
   @staticmethod
   def getinstance():
      """ static access method. """
      if singleton.__instance == none:
         singleton()
      return singleton.__instance
   def __init__(self):
      """ virtually private constructor. """
      if singleton.__instance != none:
         raise exception("this class is a singleton!")
      else:
         singleton.__instance = self
s = singleton()
print s
s = singleton.getinstance()
print s
s = singleton.getinstance()
print s

运行结果如下:

<__main__.singleton object at 0x10ee9a430>
<__main__.singleton object at 0x10ee9a430>
<__main__.singleton object at 0x10ee9a430>

创建的实例数相同,并且输出中列出的对象没有差异。

网站地图