文章分类 -  单例模式

摘要:单例模式:多次实例化结果指向同一个实例 第一种(基于classmethod) class Mysql(object): _instance = None def __init__(self, ip, port): self.ip = ip self.port = port @classmethod 阅读全文
posted @ 2019-08-05 10:03 -Rye- 阅读(97) 评论(0) 推荐(0)