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学习者快速成长!