摘要: #单例模式(不支持多线程) import threading class Single(): f=None lock=threading.Lock() def __init__(self): pass def __new__(cls,*args,**kw): if Single.f==None: w 阅读全文
posted @ 2019-03-08 18:49 小金儿 阅读(140) 评论(0) 推荐(0) 编辑