1. 首页
  2. 编程语言
  3. Python
  4. linux网站搭建

linux网站搭建

上传者: 2019-01-09 08:27:33上传 RTF文件 274.68KB 热度 32次
class Singleton(object): def __new__(cls, *args, **kwargs): if not hasattr(cls, 'instance'): cls.instance = super(Singleton, cls).__new__(cls) return cls.instance class MyClass(Singleton): def __init__(self, name): if name: self.name =
用户评论