装饰器
Posted styleonme
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了装饰器相关的知识,希望对你有一定的参考价值。
无参:
import time
def show_time(f): #装饰器函数
def inner(): #闭包函数
stat = time.time()
f()
end = time.time()
print(‘spend %s‘ % (end - stat))
return inner
@show_time #相当于foo = show_time(foo)
def foo() : #原始函数
print(‘foo....‘)
time.sleep(2)
foo()
有参:
import time
def show_time(f): #装饰器函数
def inner(x,y): #闭包函数
stat = time.time()
f(x,y)
end = time.time()
print(‘spend %s‘ % (end - stat))
return inner
@show_time #foo = show_time(foo)
def foo(a,b):
print(a+b)
time.sleep(1)
foo(1,2)
以上是关于装饰器的主要内容,如果未能解决你的问题,请参考以下文章