设计模式 设计模式 一、创建型模式 1. 单例模式 1.1请手写一个单例 #encoding=utf8 import threading import time #这里使用方法__new__来实现单例模式 class Singleton(object):#抽象单例 def __new__(cls, *args, **kw): if not hasattr(c… 设计模式 710 字 | 3 分钟 python直通bat面试