Python 单例模式

  • 原创
  • Madman
  • /
  • /
  • 0
  • 8916 次阅读

Synopsis: 单例模式(Singleton Pattern)是一种常用的软件设计模式,该模式的主要目的是确保某一个类只有一个实例存在。当你希望在整个系统中,某个类只能出现一个实例时,单例对象就能派上用场,比如整个应用只生成一个配置文件的实例对象。Python 的模块是天然的单例模式,这在大部分情况下应该是够用的,当然,我们也可以使用装饰器、元类等方法

1. 元类

可以通过元类来改变实例创建方式,实现单例、缓存或其他类似的特性

class Singleton(type):
    """定义一个元类并自己实现 __call__() 方法"""
    def __init__(self, *args, **kwargs):
        self.__instance = None
        super().__init__(*args, **kwargs)

    def __call__(self, *args, **kwargs):
        if self.__instance is None:
            self.__instance = super().__call__(*args, **kwargs)
            return self.__instance
        else:
            return self.__instance

# Example
class Spam(metaclass=Singleton):
    def __init__(self):
        print('Initing Spam')

那么Spam类就只能创建唯一的实例了,演示如下:

>>> a = Spam()
Initing Spam
>>> b = Spam()
>>> a is b
True
>>> c = Spam()
>>> a is c

                                
                            
  • Miao jingjing
  • Click here to claim your USD75 oiawqjgmai.temp.swtest.ru jZ
  • Get Lucky and Secure a Money Prize oiawqjgmai.temp.swtest.ru Nc
  • Award money has been brought into view cd091393.tw1.ru Qm
  • Join and we'll give you a money gift cd091393.tw1.ru 5Q
  • Claim your anniversary gift here cd091393.tw1.ru sb
  • Simply free money no questions asked cx953449.tw1.ru Bs
  • Obtain Cashback on All Items cx953449.tw1.ru go
  • Join Now and We'll Pay You Cash oiawqjgmai.temp.swtest.ru Mn
  • Sign up here to unlock a money gift cx953449.tw1.ru 8d
  • Seize your special cash incentive cx953449.tw1.ru M8
  • Reveal Hidden Discounts and Money cd091393.tw1.ru 3g
  • Win money with online scratch cards cd091393.tw1.ru Np
  • Get Lucky and Secure a Money Prize oiawqjgmai.temp.swtest.ru 4b
  • You've received a surprise payment cd091393.tw1.ru nw
  • Don't miss out on claiming your USD75 cx953449.tw1.ru qP
  • Share the news claim your cash oiawqjgmai.temp.swtest.ru DK
  • Click to reveal your prompt cash gift cd091393.tw1.ru 9V
  • Be Paid for Each and Every Referral cd091393.tw1.ru OR
  • Be part of the giveaway to get cash rewards cx953449.tw1.ru Xl
  • Enjoy Instant Money Back cx953449.tw1.ru Ut
  • Take this cash with no questions asked cd091393.tw1.ru yk
  • Access your customized reward here cd091393.tw1.ru Ve
  • VIP cash access is almost over oiawqjgmai.temp.swtest.ru SJ
未经允许不得转载: LIFE & SHARE - 王颜公子 » Python 单例模式

分享

作者

作者头像

Madman

如需 Linux / Python 相关问题付费解答,请按如下方式联系我

0 条评论

暂时还没有评论.

专题系列