• 主页

  • 投资

  • IT

    🔥
  • 设计

  • 销售

关闭

返回栏目

关闭

返回python栏目

21 - 装饰器 - @staticmethod - 类 - 静态方法

作者:

贺及楼

成为作者

更新日期:2024-10-27 12:15:00

@staticmethod

静态方法使用+注释

@staticmethod 是 Python 中的一个装饰器,用于将类的方法定义为静态方法。静态方法不接收隐式的 self 参数,因此不能访问类的实例属性或其他方法。它使得方法可以不依赖于类或实例的状态,从而提高代码的模块化和重用性。静态方法通常用于实现与类相关的功能,但不需要类的状态信息。

可以用在工具类里面

  1. class Utils:
  2. @staticmethod # staticmethod 装饰器同样是用于类中的方法,这表示这个方法将会是一个静态方法
  3. def say_hello(): # 但同样意味着它没有 self 参数
  4. print('hello')
  5. # 该方法可以直接被调用无需实例化
  6. Utils.say_hello() # hello
  7. # 实例化调用也是同样的效果
  8. # 有点多此一举
  9. utils = Utils()
  10. utils.say_hello() # hello

静态方法使用

  1. class Utils:
  2. @staticmethod
  3. def say_hello():
  4. print('hello')
  5. Utils.say_hello() # hello
  6. utils = Utils()
  7. utils.say_hello() # hello

让函数归类,紧耦合