摘要: Python简单单例模式-线程不安全 # -*- coding: utf-8 -*- # @Time :2020/6/24 10:17 # @Author :12257 # @SoftWare :PyCharm class Singleton: __instance = None def __new 阅读全文
posted @ 2020-06-24 10:36 Jerry-1 阅读(357) 评论(0) 推荐(0) 编辑