立即学习:https://edu.csdn.net/course/play/24797/282187?utm_source=blogtoedu
同一个类中,一个方法调用其他方法时,也需要使用self。
如果方法return self,则可多次连续调用方法
例如:p.gorw().grow().grow()
python允许用类调用方法,而不是对象,此时就变成了未绑定的方法。
r = Role()
Role.test(r) #Role为类 r为对象 test为方法,test方法中必须有参数self
class Role:
def test (self):
print('fangfa')