python 单例模式

单例模式(Singleton Pattern)是一种常用的软件设计模式,该模式的主要目的是确保某一个类只有一个实例存在

class AB:
    __instance = None  # 定义一个类属性做判断

    def __new__(cls, *args, **kwargs):

        if cls.__instance is None:
            # 如果__instance为空证明是第一次创建实例
            # 通过父类的__new__(cls)创建实例
            cls.__instance = super().__new__(cls)
            return cls.__instance
        else:
            # 返回上一个对象的引用
            return cls.__instance

    def __init__(self, name):
        self.name = name

    def get_name(self):
        print(self.name)


a = AB('张三')  
a.get_name()
print(id(a)) # 1406318022552
b = AB('李四')
print(id(b)) # 1406318022552
a.get_name()

上一篇:Vector注意事项


下一篇:Puppeteer--代码示例(3)