python类函数调用的方法是什么

avatar
作者
筋斗云
阅读量:0

在 Python 中调用类函数有两种方法:

  1. 实例化类并调用实例方法:
class MyClass:     def my_function(self):         print("Hello, world!")  my_instance = MyClass() my_instance.my_function() 
  1. 直接调用类方法(静态方法):
class MyClass:     @staticmethod     def my_function():         print("Hello, world!")  MyClass.my_function() 

    广告一刻

    为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!