Python带参数的装饰器运行原理解析
关于装饰器的理解,特别像《盗梦空间》中的进入梦境和从梦境出来的过程,一层一层的深入梦境,然后又一层一层的返回,被带入梦境的是被装饰的函数,装饰器就是使人入梦的工具。
上代码:
from functools import wrapsdef decorator_with_argument(argument=’’): def outer(func): message = argument + func.__name__ @wraps(func) def inner(*args, **kwargs): print(message) print(’This is inner function running’) return func(*args, **kwargs) return inner return outer
以上是装饰器的部分。
接下来,是带参数的装饰器:
@decorator_with_argument('Decorator’s argument + ')def pfunc(arg=’default’): print(’This is pfunc running’) print(f’This ' {arg} ' is from pfunc argument’)
最后,函数的运行:
pfunc('pfunc’s argument')
函数本身也是带参数的。输出结果如下:
Decorator’s argument + pfuncThis is inner function runningThis is pfunc runningThis ' pfunc’s argument ' is from pfunc argument
Process finished with exit code 0
下图是关于梦境的具体图示:

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持好吧啦网。
相关文章:
1. IntelliJ IDEA设置条件断点的方法步骤2. PHP输入流php://input的使用分析3. HTML DOM setInterval和clearInterval方法案例详解4. 如何在jsp界面中插入图片5. IIS Express 取代 ASP.NET Development Server的配置方法6. 关于Python Socket编程的要点详解7. 利用Python实现最小二乘法与梯度下降算法8. python中逻辑与或(and、or)和按位与或异或(&、|、^)区别9. ASP.NET堆和栈二之值类型和引用类型的参数传递和内存分配10. Python变量格式化输出实现原理解析

网公网安备