装饰器
Posted xuechengeng
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了装饰器相关的知识,希望对你有一定的参考价值。
装饰器代码
#统计不同程序的运行时间 import time def index(): print(‘welcome to index page‘) time.sleep(3) #统计谁的时间,传谁 def outter(func): # func=最原始那个index的内存地址 def wrapper(): start = time.time() func() # 最原始那个index的内存地址() stop = time.time() print(‘run time is %s‘ % (stop - start)) return wrapper #下面一行的目的是偷梁换柱 index = outter(index) # index=outter(最原始那个index的内地址) #index=wrapper函数的内地址 #为了不改变调用方式,将变量名定义为index index() #调用wraper(),index的地址已经变成wrapper的地址
以上是关于装饰器的主要内容,如果未能解决你的问题,请参考以下文章