当前位置: 首页 > article >正文

详解python的修饰符

Python 中的修饰符(Decorator)是一种用于修改或扩展函数或类行为的工具。它们本质上是一个函数,接受另一个函数或类作为参数,并返回一个新的函数或类。修饰符通常用于在不修改原函数或类代码的情况下,添加额外的功能。

1. 基本概念

  • 修饰符函数:一个接受函数或类作为参数,并返回新函数或类的函数。
  • 语法糖:使用 @ 符号简化修饰符的应用。

2. 函数修饰符

函数修饰符用于修改或扩展函数的行为。以下是一个简单的例子:

def my_decorator(func):
    def wrapper():
        print("Before function call")
        func()
        print("After function call")
    return wrapper

@my_decorator
def say_hello():
    print("Hello!")

say_hello()

输出

Before function call
Hello!
After function call
  • my_decorator 是一个修饰符函数,接受 func 作为参数。
  • wrapper 是一个内部函数,用于包裹原函数 func,并在调用前后添加额外操作。
  • @my_decorator 是语法糖,等同于 say_hello = my_decorator(say_hello)

3. 带参数的函数修饰符

修饰符也可以接受参数,此时需要再嵌套一层函数:

def repeat(num_times):
    def decorator(func):
        def wrapper(*args, **kwargs):
            for _ in range(num_times):
                result = func(*args, **kwargs)
            return result
        return wrapper
    return decorator

@repeat(3)
def greet(name):
    print(f"Hello {name}")

greet("Alice")

输出

Hello Alice
Hello Alice
Hello Alice
  • repeat 是一个带参数的修饰符函数,返回 decorator 函数。
  • decorator 接受 func 作为参数,返回 wrapper 函数。
  • wrapper 包裹原函数 func,并根据 num_times 参数重复调用。

4. 类修饰符

修饰符也可以用于类,修改或扩展类的行为:

def my_class_decorator(cls):
    class Wrapper:
        def __init__(self, *args, **kwargs):
            self.wrapped = cls(*args, **kwargs)

        def display(self):
            print("Before method call")
            self.wrapped.display()
            print("After method call")

    return Wrapper

@my_class_decorator
class MyClass:
    def display(self):
        print("Displaying MyClass")

obj = MyClass()
obj.display()

输出

Before method call
Displaying MyClass
After method call
  • my_class_decorator 是一个类修饰符,接受 cls 作为参数。
  • Wrapper 是一个内部类,用于包裹原类 cls,并在方法调用前后添加额外操作。
  • @my_class_decorator 是语法糖,等同于 MyClass = my_class_decorator(MyClass)

5. 内置修饰符

Python 提供了一些内置修饰符,如 @staticmethod@classmethod@property

  • @staticmethod:将方法定义为静态方法,不接收 selfcls 参数。
  • @classmethod:将方法定义为类方法,第一个参数为 cls
  • @property:将方法定义为属性,可以通过实例访问。
class MyClass:
    @staticmethod
    def static_method():
        print("Static method")

    @classmethod
    def class_method(cls):
        print(f"Class method of {cls}")

    @property
    def name(self):
        return self._name

    @name.setter
    def name(self, value):
        self._name = value

MyClass.static_method()
MyClass.class_method()

obj = MyClass()
obj.name = "Alice"
print(obj.name)

输出

Static method
Class method of <class '__main__.MyClass'>
Alice

6. 修饰符的链式调用

多个修饰符可以链式调用,顺序从下往上执行:

def decorator1(func):
    def wrapper():
        print("Decorator 1")
        func()
    return wrapper

def decorator2(func):
    def wrapper():
        print("Decorator 2")
        func()
    return wrapper

@decorator1
@decorator2
def say_hello():
    print("Hello!")

say_hello()

输出

Decorator 1
Decorator 2
Hello!
  • 先应用 decorator2,再应用 decorator1

总结

Python 的修饰符是一种强大的工具,能够在不修改原函数或类代码的情况下,添加额外功能。它们广泛应用于日志记录、权限检查、性能测试等场景。理解修饰符的工作原理有助于编写更简洁、灵活的代码。


http://www.kler.cn/a/526514.html

相关文章:

  • 【漫话机器学习系列】069.哈达马乘积(Hadamard Product)
  • 智慧园区系统助力企业智能化升级实现管理效率与安全性全方位提升
  • C语言连接Mysql
  • shell脚本
  • 【面试】【前端】SSR与SPA的优缺点
  • C语言-运算符
  • 数科OFD证照生成原理剖析与平替方案实现
  • 大一计算机的自学总结:位运算实现加减乘除
  • 用BGP的路由聚合功能聚合大陆路由,效果显著不?
  • rust如何操作sqlserver
  • 每日 Java 面试题分享【第 17 天】
  • 18、智能驾驶芯片外部接口要求
  • SpringBoot中运行Yolov5程序
  • 前端知识速记—JS篇:null 与 undefined
  • Linux实操篇-文件目录类>/>>/echo/head/tail/ln/history
  • leetcode-分割等和子集
  • Java中 instanceof 的用法(详解)
  • 安卓(android)饭堂广播【Android移动开发基础案例教程(第2版)黑马程序员】
  • 谭浩强C语言程序设计(4) 8章(上)
  • deepseek R1 14b显存占用
  • 【Block总结】HWD,小波下采样,适用分类、分割、目标检测等任务|即插即用
  • 【Block总结】CAA捕获远程上下文信息,增强特征提取的能力|即插即用
  • 哈希表实现
  • 缓冲区和c库的简单实现
  • 性能优化2-删除无效引用
  • kobject、kset和ktype的关系