标签:int 实例 obj ret style object 面试题1 self 设计
1.单例模式
单例模式 23种设计模式中最简单 最常用 最常考的一种模式
一个类 只能有一个实例
class Teacher: flag = None def __new__(cls, *args, **kwargs): if cls.flag is None: cls.flag = object.__new__(cls) # 这一句话只能走一次 return cls.flag def __init__(self,name): self.name = name alex1 = Teacher(‘alex‘) alex2 = Teacher(‘alex‘) yuan = Teacher(‘yuan‘) print(alex1.name) print(yuan.name)
标签:int 实例 obj ret style object 面试题1 self 设计
原文地址:https://www.cnblogs.com/studybrother/p/10029509.html