1 class Test(): 2 def __init__(self, func): 3 print(‘装饰器1‘) 4 self.__func = func 5 6 def __call__(self): 7 print(‘装饰器2‘) 8 self.__func() 9 10 @Test #等价于test = Test(test),将test重定向到一个新的函数 11 def test(): 12 print(‘函数‘) 13 14 test()
1 装饰器1 2 装饰器2 3 函数
Posted 魂~
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 类装饰器相关的知识,希望对你有一定的参考价值。
1 class Test(): 2 def __init__(self, func): 3 print(‘装饰器1‘) 4 self.__func = func 5 6 def __call__(self): 7 print(‘装饰器2‘) 8 self.__func() 9 10 @Test #等价于test = Test(test),将test重定向到一个新的函数 11 def test(): 12 print(‘函数‘) 13 14 test()
1 装饰器1 2 装饰器2 3 函数
以上是关于python 类装饰器的主要内容,如果未能解决你的问题,请参考以下文章