linux网站搭建

上传:happybee20654 浏览: 31 推荐: 0 文件:RTF 大小:274.68KB 上传时间:2019-01-09 08:27:33 版权申诉
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 =
上传资源
用户评论