要調用其他類中的方法,需要先創建該類的實例對象,然后通過實例對象調用相應的方法。以下是一種示例代碼:
class MyClass:
def my_method(self):
print("調用了 MyClass 中的方法")
class AnotherClass:
def another_method(self):
print("調用了 AnotherClass 中的方法")
my_obj = MyClass() # 創建 MyClass 的實例對象
my_obj.my_method() # 調用 MyClass 中的方法
another_obj = AnotherClass() # 創建 AnotherClass 的實例對象
another_obj.another_method() # 調用 AnotherClass 中的方法
在上面的示例中,我們創建了兩個類 MyClass
和 AnotherClass
,AnotherClass
中的 another_method
方法中創建了 MyClass
的實例對象 my_obj
,然后通過 my_obj.my_method()
調用了 MyClass
中的 my_method
方法。最后,在主程序中創建了 AnotherClass
的實例對象 another_obj
,并通過 another_obj.another_method()
調用了 AnotherClass
中的 another_method
方法。運行以上代碼,會輸出以下結果:
調用了 AnotherClass 中的方法
調用了 MyClass 中的方法