1.单例模式 一般来说,一个类可以生成任意个实例,单例模式只生成一个实例。
class Single: def __new__(cls, *args, **kwargs): if not hasattr(cls, 'obj'): cls.