python 基于元类的单例
2021-06-07 15:03
标签:let threading thread not reading elf singleton att strong 创建元类的基类(Singleton) class SingletonType(type): class Singleton(metaclass=SingletonType): ` 常规锁和Python中的Rlock之间的一个区别是,常规锁可以由不同的线程释放,而重入锁必须由获取它的同一个线程释放,同时要求解锁次数应与加锁次数相同,才能用于另一个线程。另外,需要注意的是一定要避免在多个线程之间拆分锁定操作,如果一个线程试图释放一个尚未获取的锁,Python将引发错误并导致程序崩溃。 python 基于元类的单例 标签:let threading thread not reading elf singleton att strong 原文地址:https://www.cnblogs.com/maxiaohei/p/14583858.html
`
from threading import RLock
single_lock = RLock()def __call__(cls, *args, **kwargs):
with SingletonType.single_lock:
if not hasattr(cls, ‘_instance‘):
cls._instance = super(SingletonType, cls).__call__(*args, **kwargs)
return cls._instance
def init(self, name):
self.name = name
s1 = Singleton(‘1 create‘) print(s1.name, id(s1)) s2 = Singleton(‘2 create‘) print(s2.name, id(s2))
运行结果:
super 替换为 cls 后运行引发的错误