Python带参数的装饰器运行原理解析

关于装饰器的理解,特别像《盗梦空间》中的进入梦境和从梦境出来的过程,一层一层的深入梦境,然后又一层一层的返回,被带入梦境的是被装饰的函数,装饰器就是使人入梦的工具。

上代码:

from functools import wraps

def 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 + pfunc

This is inner function running

This is pfunc running

This " pfunc's argument " is from pfunc argument

Process finished with exit code 0

下图是关于梦境的具体图示:


 

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。

posted @   南鹤-  阅读(436)  评论(0编辑  收藏  举报
编辑推荐:
· Linux glibc自带哈希表的用例及性能测试
· 深入理解 Mybatis 分库分表执行原理
· 如何打造一个高并发系统?
· .NET Core GC压缩(compact_phase)底层原理浅谈
· 现代计算机视觉入门之:什么是图片特征编码
阅读排行:
· 手把手教你在本地部署DeepSeek R1,搭建web-ui ,建议收藏!
· Spring AI + Ollama 实现 deepseek-r1 的API服务和调用
· 数据库服务器 SQL Server 版本升级公告
· 程序员常用高效实用工具推荐,办公效率提升利器!
· C#/.NET/.NET Core技术前沿周刊 | 第 23 期(2025年1.20-1.26)
点击右上角即可分享
微信分享提示