首页 > 其他 > 详细

单列模式

时间:2020-04-24 22:48:35      阅读:67      评论:0      收藏:0      [点我收藏+]
#导包方式引入

#new方法实现

class Student():
    def __new__(self):
        if not hasattr(self,instance):
            self.instance =super(Student,self).__new__(self)
        return self.instance
a = Student()
b = Student()
print(id(a),id(b))


class Cat():
    def __new__(self):
        if not hasattr(self,instance):
            self.instane = super(Cat,self).__new__()
            return self.instane



class Person():
    def __new__(self):
        if not hasattr(self,instance):
            self.instance = super(Person,self).__new__()

        return self.instance


#装饰器

def singleton(cls,*arg,**kwargs):
    instance = {}
    def  _singleton():
        if cls not in instance:
            instance[cls] = cls(*arg,**kwargs)
        return instance[cls]
    return _singleton

@singleton
class Box():
    pass



s = Box()
m = Box()


print(id(s),id(m))

 

单列模式

原文:https://www.cnblogs.com/director/p/12770404.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!