网上流传最广的 Python 单例模式竟然是有问题的? 2022-06-23 class AppConfig: def __new__(cls, args, *kwargs): if not hasattr(cls,'_instance'): cls._…