博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Python单例模式
阅读量:7219 次
发布时间:2019-06-29

本文共 1804 字,大约阅读时间需要 6 分钟。

#-*- encoding=utf-8 -*-class Singleton(object):    def __new__(cls, *args, **kw):        if not hasattr(cls, '_instance'):            orig = super(Singleton, cls)            cls._instance = orig.__new__(cls, *args, **kw)        return cls._instanceclass MyClass(Singleton):    a = 1one = MyClass()two = MyClass()two.a = 3print one.a#3#one和two完全相同,可以用id(), ==, is检测print id(one)print id(two)print one == two#Trueprint one is two#Trueclass Borg(object):    _state = {}    def __new__(cls, *args, **kw):        ob = super(Borg, cls).__new__(cls, *args, **kw)        ob.__dict__ = cls._state        return obclass MyClass2(Borg):    a = 1one = MyClass2()two = MyClass2()two.a = 3print one.aprint id(one)print id(two)print one == twoprint one is twoclass Singleton2(type):    def __init__(cls, name, bases, dict):        super(Singleton2, cls).__init__(name, bases, dict)        cls._instance = None    def __call__(cls, *args, **kw):        if cls._instance is None:            cls._instance = super(Singleton2, cls).__call__(*args, **kw)        return cls._instanceclass MyClass3(object):    __metaclass__ = Singleton2one = MyClass3()two = MyClass3()two.a = 3print one.a#3print id(one)#31495472print id(two)#31495472print one == two#Trueprint one is two#Truedef singleton(cls, *args, **kw):    instances = {}    def _singleton():        if cls not in instances:            instances[cls] = cls(*args, **kw)        return instances[cls]    return _singleton@singletonclass MyClass4(object):    a = 1    def __init__(self, x=0):        self.x = xone = MyClass4()two = MyClass4()two.a = 3print one.a#3print id(one)#29660784print id(two)#29660784print one == two#Trueprint one is two#Trueone.x = 1print one.x#1print two.x#1

class3使用了元类。 

class4使用了美妙的decorator。

转载于:https://www.cnblogs.com/tom-zhao/p/4135604.html

你可能感兴趣的文章
review board
查看>>
URAL 1495 One-two, One-two 2
查看>>
牛客国庆集训派对Day3 G Stones
查看>>
虚函数简单总结
查看>>
插入排序--算法导论
查看>>
NoSQL -- Redis使用
查看>>
处理iphone的 .play() 不能播放问题
查看>>
jetty404web界面服务器信息隐藏
查看>>
22个Photoshop网页设计教程网站推荐
查看>>
如何让程序员更容易的开发Web界面?重构SmartAdmin展示TinyUI
查看>>
centos7 python2和python3共存
查看>>
rhel6.2配置在线yum源
查看>>
分级聚类算法
查看>>
Web Services 入门(之二)
查看>>
随机模拟MCMC和Gibbs Sampling
查看>>
网络安全是一种态度
查看>>
POJ1131 Octal Fractions
查看>>
mysql-ulogd2.sql
查看>>
119. Pascal's Triangle II - Easy
查看>>
349. Intersection of Two Arrays - Easy
查看>>