import time
def delayed_start(func=None, *, duration=1): # 这一层主要是装饰器参数
def decorator(_func): # 这一层主要是将被装饰器装饰的函数传递进来
def wrapper(*args, **kwargs): # 被装饰器装饰的函数的参数传递进来
time.sleep(duration)
return _func(*args, **kwargs) # 真正执行被装饰器装饰的函数
return wrapper
if func is None:
print(func)
return decorator
else:
print("执行了。。。。。。。")
print(func)
return decorator(func)
"""
# 不提供任何参数,使用默认值
@delayed_start
def hello():
pass
1.delayed_start被执行,并将hello当成参数传递给func
2.函数执行到判断func时,因为func有值,所以执行decorator(func)
4.直接返回wrapper
5.执行wrapper()
6.返回_func(),真正函数执行的地方,_func() = hello()
# 提供可选的关键字参数
@delayed_start(duration=2)
def hello():
pass
1.delayed_start被执行,因为有关键字参数duration传递,所以func=None
2.函数执行到判断func时,因为func使用了默认值,所以执行decorator
4.并将hello传递给decorator的参数_func,返回wrapper()函数
5.执行wrapper()
6.返回_func(),真正函数执行的地方,_func() = hello()
# 提供括号调用,但不提供任何参数
@delayed_start()
def hello():
pass
"""
标签:start,delayed,wrapper,hello,括号,参数,func,装饰
From: https://www.cnblogs.com/weiweivip666/p/16740057.html