共计 441 个字符,预计需要花费 2 分钟才能阅读完成。
在 Python 中,要调用其他类中的方法,需要先创建该类的对象,然后通过对象来调用方法。
以下是一个简单的示例:
class MyClass:
def my_method(self):
print("Hello from MyClass!")
class OtherClass:
def other_method(self):
print("Hello from OtherClass!")
obj = MyClass() # 创建 MyClass 对象
obj.my_method() # 调用 MyClass 中的方法
# 创建 OtherClass 对象
other_obj = OtherClass()
# 调用 OtherClass 中的方法
other_obj.other_method()
输出结果为:
Hello from OtherClass!
Hello from MyClass!
在上面的示例中,OtherClass
中的 other_method
方法创建了一个 MyClass
对象,并通过该对象调用了 my_method
方法。
丸趣 TV 网 – 提供最优质的资源集合!
正文完