python合并函数def_Python怎么将两个功能相同的装饰器高阶函数,一个带参数一个不带参数的合并成一个装饰器?请前辈指点一二,十分感谢?...

from types import FunctionType

def log2(*params):

assert (len(params)==1)

if type(params[0])==FunctionType:

func=params[0]

@functools.wraps(func) # 保持传入的函数名称不被返回函数改变

def wrapper(*args, **kwargs):

print('%s %s():' % (("begin call"), func.__name__))

call_func_ref = func(*args, **kwargs)

print('%s %s():' % (("end call"), func.__name__))

return call_func_ref

return wrapper

else:

text=params[0]

def decorator(func):

@functools.wraps(func) # 保持传入的函数名称不被返回函数改变

def wrapper(*args, **kwargs):

print('%s %s():' % (("begin " + text), func.__name__))

call_func_ref = func(*args, **kwargs)

print('%s %s():' % (("end " + text), func.__name__))

return call_func_ref

return wrapper

return decorator

@log2 # 为函数添加无参数装饰器

def now():

print('Current local time:' + get_now_local_time())

@log2('execute current the function') # 为函数添加带参数装饰器

def now2():

print('Current local time:' + get_now_local_time())

now()

now2()

输出结果:

begin call now():

Current local time:2016-10-13 15:12:31

end call now():

begin execute current the function now2():

Current local time:2016-10-13 15:12:31

end execute current the function now2():

可实现在没有参数时不用加括号的形式。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值