摘要: 1 #!/usr/bin/env python 2 #coding:utf-8 3 class instance(object): 4 __instance = None #类私有方法 5 def __new__(cls): 6 if cls.__instance == None: 7 cls.__instance = ... 阅读全文
posted @ 2017-10-19 11:34 lichenxi 阅读(136) 评论(0) 推荐(0) 编辑