码迷,mamicode.com
首页 > 编程语言 > 详细

python 设计模式

时间:2019-09-21 12:44:23      阅读:67      评论:0      收藏:0      [点我收藏+]

标签:let   ==   class   rgs   div   instance   python   not   return   

单例模式

class Singleton:

    def __new__(cls, *args, **kw):
        if not hasattr(cls, _instance):
            cls._instance = object.__new__(cls)
        return cls._instance
    def tt(self):
        pass

one = Singleton()
two = Singleton()

two.a = 3

# 3
# one和two完全相同,可以用id(), ==, is检测
print(id(one))
# 29097904
print(id(two))
# 29097904
print(one == two)
# True
print(one is two)

 

python 设计模式

标签:let   ==   class   rgs   div   instance   python   not   return   

原文地址:https://www.cnblogs.com/huay/p/11562199.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!