이 글에서는 Python 클래스의 상속 관련 내용을 위주로 자세하게 소개하고 있습니다. 필요한 친구는
Python의 상속을 참고하세요. class 자세한 설명
Python은 객체 지향이므로 확실히 클래스 상속을 지원합니다. Python의 클래스 상속 구현은 Javascript보다 간단합니다.
부모반:
class Parent: parentAttr = 100 def init(self): print("parent Init") def parentMethod(self): print("parentMethod") def setAttr(self,attr): self.parentAttr = attr def getAttr(self): print("ParentAttr:",Parent.parentAttr)
자녀반
class Child(Parent): def init(self): print("child init") def childMethod(self): print("childMethod")
전화하기
p1 = Parent(); p1.parentMethod(); c1 = Child(); c1.childMethod();
출력:
parent Init parentMethod child init childMethod Press any key to continue . . .
Python은 다중 상속을 지원합니다
class A: # 定义类 A ..... class B: # 定义类 B ..... class C(A, B): # 继承类 A 和 B .....
읽어 주셔서 감사합니다. 모든 사람에게 도움이 되기를 바랍니다. 지원해 주셔서 감사합니다. 이 사이트의!
위 내용은 Python 클래스 상속 예제 코드에 대한 자세한 설명의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!