比如,某个服务器程序的配置信息存放在一个文件中,客户端通过一个 AppConfig 的类来读取配置文件的信息。如果在程序运行期间,有很多地方都需要使用配置文件的内容,也就是说,很多地方都需要创建 AppConfig 对象的实例,这就导致系统中存在多个 AppConfig 的实例对象,而这样会严重浪费内存资源,尤其是在配置文件内容很多的情况下。事实上,类似 AppConfig 这样的类,我们希望在程序运行期间只存在一个实例对象
1 class Singleton(object): 2 def __init__(self): 3 pass 4 5 def __new__(cls, *args, **kwargs): 6 if not hasattr(Singleton, "_instance"): # 反射 7 Singleton._instance = object.__new__(cls) 8 return Singleton._instance 9 10 obj1 = Singleton() 11 obj2 = Singleton() 12 print(obj1, obj2) #<__main__.Singleton object at 0x004415F0> <__main__.Singleton object at 0x004415F0> 13 14 15 单例模式
“命令”设计模式也可以通过把函数作为参数传递而简化
1 class MacroCommand: 2 """一个执行一组命令的命令""" 3 def __init__(self, commands): 4 self.commands = list(commands) # ➊ 5 def __call__(self): 6 for command in self.commands: # ➋ 7 command() 8 9 10 ❶ 使用 commands 参数构建一个列表, 这样能确保参数是可迭代对象, 还能在各个 MacroCommand 实例中保存各个命令引用的副本。 ❷ 调用 MacroCommand 实例时, self.commands 中的各个命令依序执 行。