在Python中,从同一个类中的另一个方法调用方法时,需要使用self
参数。self
是一个约定俗成的参数名,它表示当前对象实例本身。通过使用self
参数,可以在类的方法中访问和调用其他方法。
以下是一个示例代码:
class MyClass:
def method1(self):
print("This is method 1")
self.method2() # 调用同一个类中的另一个方法
def method2(self):
print("This is method 2")
obj = MyClass()
obj.method1()
输出结果为:
This is method 1
This is method 2
在上述示例中,method1
中通过self.method2()
调用了同一个类中的method2
方法。通过使用self
参数,可以在类的方法之间进行相互调用。
领取专属 10元无门槛券
手把手带您无忧上云