标签:def art 运行时间 star func return 方法 nbsp 一个
1、装饰器定义:本质就是一个函数,功能是为其它函数添加附加功能。
2、装饰器原则:1)不修改被装饰函数的源代码,2)不修改被装饰函数调用方法。
装饰器=高阶函数+函数嵌套+闭包
例:
import time
def timmer(func): #定义装饰器函数
def wapper():
start_time=time.time()
func()
stop_time=time.time()
print("程序运行时间是:%s"%(stop_time-start_time))
return wapper
@timmer #相当于test=timmer(test)
def test():
time.sleep(1)
print("test程序!")
test()
标签:def art 运行时间 star func return 方法 nbsp 一个
原文地址:https://www.cnblogs.com/sxdx1023/p/12247913.html