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 函数
标签:def post fun self 定向 sel col python class
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 函数
标签:def post fun self 定向 sel col python class
原文地址:https://www.cnblogs.com/gundan/p/8166688.html