Python的装饰器怎么将两个功能相同的函数,一个带参数一个不带参数的合并成一个函数?
获取本地时间方法
def get_now_local_time():
return time.strftime('%Y-%m-%d %H:%M:%S', time.localtime(time.time()))装饰器1
def log1(func):
@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@log1 # 为函数添加无参数装饰器
def now():
print('Current local time:' + get_now_local_time())
now()无参装饰器函数调用输出
begin call now(): Current local time:2016-10-12 23:51:11 end call now():
装饰器2
def log2(text=None):
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('execute current the function') # 为函数添加带参数装饰器
def now():
print('Current local time:' + get_now_local_time())
now()带有参装饰器函数调用输出
begin execute current the function now(): Current local time:2016-10-12 23:49:25 end execute current the function now():
想做完成这两个函数的合并编码,该怎么写?请大牛前辈给指点一下呗,谢谢~~~
Copyright 2014-2026 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
拥有18年软件开发和IT教学经验。曾任多家上市公司技术总监、架构师、项目经理、高级软件工程师等职务。 网络人气名人讲师,...