静态方法

  • 可有对象调用也可以有类调用

示例1

  • 定义一个包含属性num与静态方法static_method()的类Example。
  1. class Example:
  2. num = 10
  3. @staticmethod
  4. def static_method():
  5. print(f"类属性的值为: {Example.num}")
  6. print("静态方法")
  7. ex = Example()
  8. ex.static_method()
  9. print('-----------')
  10. Example.static_method()

41静态方法 - 图1