python的单例模式就是一个类的实例只能自始自终自能创建一次。应用场景比如说数据库的连接池。
()instance (,).name ().instance.instance obj () .instance obj obj duoceshi1 Singleton.get_instance() duoceshi2 Singleton.get_instance() (duoceshi1) (duoceshi2)
运行结果如下:
<__main__.Singleton object at 0x000000000217E4E0>
<__main__.Singleton object at 0x000000000217E4E0>
时间: 2024-10-05 05:40:13