摘要:
1、使用__new__方法 class Single(object): _instance = None def __new__(cls, *args, **kwargs): if not cls._instance: cls._instance = super().__new__(cls, *ar 阅读全文
摘要:
1、实例方法 实例方法就是普通的对象方法,只能通过对象实例来调用,调用时参数self会自动关联到对象实例。 2、类方法 需要指定修饰器@classmethod,类方法可以通过类直接调用,也可以通过对象直接调用,但参数cls将自动关联到类。 3、静态方法 需要指定修饰器@staticmethod,没有 阅读全文