另一种实现方式:

 1 __author__ = "csy"
 2 
 3 def test2(func):
 4     def test1():
 5         func()
 6         print(func)  #打印函数内存地址作为装饰器要帮助被装饰函数新增的功能
 7     return test1
 8 
 9 def bar2():
10     print('in the bar2')
11 
12 bar2 = test2(bar2)    # test2将bar2作为变量在嵌套函数test1中调用,再将test1的内存地址作为返回值重新赋给bar2
13 bar2()

 

posted on 2017-09-02 18:37  csy113  阅读(116)  评论(0编辑  收藏  举报