码迷,mamicode.com
首页 > 其他好文 > 详细

14.4多继承

时间:2018-04-10 15:10:46      阅读:108      评论:0      收藏:0      [点我收藏+]

标签:Python   多继承   

多继承
# -*-coding:utf-8 -*-
__author__ = ‘xiaojiaxin‘
__file_name__ = ‘多继承‘

#只有python和c++支持多继承
class grandf:
    def a(self):
        print("G1.a")

class father(grandf):
    def a1(self):
        print("F1.a")

class father2:
    def a(self):
        print("F2.a")

class son(father,father2):   #(father)表示这个孩子的父亲就是father
    pass

class son2(father2,father):
    pass

obj=son()
obj.a()
# G1.a

obj2=son2()
obj2.a()
# F2.a

总结:
多继承:从左到右找,一条道走到黑,同一个根时,根最后执行,self始终是方法的调用者。

14.4多继承

标签:Python   多继承   

原文地址:http://blog.51cto.com/10777193/2096445

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!