摘要: def login(text): def decorator(func): def wrapper(*args, **kargs): print('%s %s'%(text, func.__name__)) return func(*args, **kargs) return wrapper ret 阅读全文
posted @ 2020-11-17 14:31 一只有梦想的咸鱼 阅读(95) 评论(0) 推荐(0) 编辑
摘要: # an example of python decoratordef deco1(func): print(1) def wrapper1(): print(2) func() print(3) print(4) return wrapper1def deco2(func): print(5) d 阅读全文
posted @ 2020-11-17 14:23 一只有梦想的咸鱼 阅读(73) 评论(0) 推荐(0) 编辑
摘要: 本文全篇摘录自 https://blog.csdn.net/liuzonghao88/article/details/103586634 写的通俗易懂,我就直接搬过来了 功能 Python装饰器(decorator)在实现的时候,被装饰后的函数其实已经是另外一个函数了(函数名等函数属性会发生改变), 阅读全文
posted @ 2020-11-17 11:11 一只有梦想的咸鱼 阅读(75) 评论(0) 推荐(0) 编辑