python单例模式
【摘要】 超级简单入门python单例模式
import os
class Watch(object): __instance=None #定义一个类属性做判断 def __new__(cls): if cls.__instance==None: #如果__instance为空证明是第一次创建实例 #通过父类的__new__(cls)创建实例 cls.__instance=o...
超级简单入门python单例模式
import os
class Watch(object): __instance=None #定义一个类属性做判断 def __new__(cls): if cls.__instance==None: #如果__instance为空证明是第一次创建实例 #通过父类的__new__(cls)创建实例 cls.__instance=object.__new__(cls) return cls.__instance else: #返回上一个对象的引用 return cls.__instance
def func(): a = Watch() print(id(a)) b = Watch() print(id(b))
if __name__ == "__main__": func()
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
文章来源: blog.csdn.net,作者:IM-STONE,版权归原作者所有,如需转载,请联系作者。
原文链接:blog.csdn.net/doubleintfloat/article/details/113870515
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)