修饰器练习

Posted gaoxu366

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了修饰器练习相关的知识,希望对你有一定的参考价值。

import time
# def foo():
# print("in the foo")
# bar()
# #foo()
# def bar():
# print("in the bar")
#
# foo()
# bar()
def bar(): #基本函数
time.sleep(4)
print("in the bar")
def test1(func1): #装饰器--用来装饰基本函数,为其增加了计时器的功能
start_time = time.time()
func1() #func1 = bar -- print("in the bar")
stop_time = time.time()
print("func1 is running %s" %(stop_time - start_time))

def test2(func2):
print(func2)
return func2

print(test2(bar)) #bar 传的是bar对应的内存地址
test2(bar()) #bar()传的是bar()函数的内容
























以上是关于修饰器练习的主要内容,如果未能解决你的问题,请参考以下文章

Python有参/无参修饰器函数和修饰器类的用法

Python有参/无参修饰器函数和修饰器类的用法

python3修饰器简单理解

修饰器&高阶组件

Python的修饰器@

谈谈python修饰器