Python - 装饰器装饰class,访问闭包中的自由变量

Posted allen2333

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python - 装饰器装饰class,访问闭包中的自由变量相关的知识,希望对你有一定的参考价值。

def singleton(cls):
    instances = {}
    def wrapper(*args, **kwargs):
        if cls not in instances:
            instances[cls] = cls(*args, **kwargs)
        return instances[cls]
    return wrapper
    
@singleton
class Foo:
    pass

f1 = Foo()
f2 = Foo()
print(dir(Foo))

# (<cell at 0x7f9ad3ede040: type object at 0x55929df326a0>, <cell at 0x7f9ad3e9e580: dict object at 0x7f9ad3ee8140>)
print(Foo.__closure__)  
print(Foo.__closure__[1].cell_contents) # {<class ‘__main__.Foo‘>: <__main__.Foo object at 0x7f1533a19be0>}

以上是关于Python - 装饰器装饰class,访问闭包中的自由变量的主要内容,如果未能解决你的问题,请参考以下文章

Python的闭包和装饰器

Python函数编程——闭包和装饰器

python基础装饰器

Python虚拟机函数机制之闭包和装饰器

python装饰器

Python闭包和装饰器