Python 상속 코드 예

不言
풀어 주다: 2019-03-09 13:59:01
앞으로
2051명이 탐색했습니다.

이 기사는 Python 상속에 대한 코드 예제를 제공합니다. 필요한 친구들이 참고할 수 있기를 바랍니다.

#单继承
class Person(object):
    def __init__(self,name,age,height,weight):
        self.name = name
        self.age = age
        self.height = height
        self.weight = weight
    def eat(self):
        print("eating")
    def walk(self):
        print("walking")
    def __str__(self):
        return "name:%s,age:%d"%(self.name,self.age)

from person import Person
class Student(Person):
    def __init__(self,name,age,height,weight):
        #调用父类中的属性
        super(Student,self).__init__(name,age,height,weight)
    def studey(self):
        print("studying")

from student import Student
stu = Student("tom",25,252,63)
print(stu.name)
로그인 후 복사

#多继承
注意,当self.money = money编程私有属性时,即self.__money会出现报错现象
,说明私有属性不能直接继承

class Father(object):
    def __init__(self,money):
        self.money = money
    def eat (self):
        print("eating")
    
class Mother(object):
    def __init__(self,facevalue):
        self.facevalue = facevalue
    def sleep(self):
        print("slepping")
       
from father import Father
from mother import Mother
class Child(Father,Mother):
    def __init__(self,money,facevalue):
        Father.__init__(self,money)
        Mother.__init__(self,facevalue)
    def study(self):
        print("studing")
    
 from child import Child
def main():
    ch = Child(5,"NICE")
    print(ch.money,ch.facevalue)
if __name__=='__main__':
    main()
로그인 후 복사

위 내용은 Python 상속 코드 예의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

관련 라벨:
원천:csdn.net
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!