python 3.x函数装饰器

China☆狼群 提交于 2020-02-27 13:24:16

函数对象在被调用时,函数装饰器将会起作用:
 

from time import ctime,sleep

def tsfunc(func):
    def wrappedFunc():
        print('[%s] %s() called'% (ctime(),func.__name__))
        return func()
    return wrappedFunc

@tsfunc
def foo():
    pass

foo()
sleep(4)

for i in range(2):
    sleep(1)
    foo()

运行结果:

[Thu Feb 27 11:14:04 2020] foo() called
[Thu Feb 27 11:14:09 2020] foo() called
[Thu Feb 27 11:14:10 2020] foo() called

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!