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

2.29多继承

时间:2020-05-17 21:57:22      阅读:61      评论:0      收藏:0      [点我收藏+]

标签:put   --   多重继承   tput   col   div   pre   对象   优先级   

#多重继承
#多继承:子类有多个父类 所有类的父类都是对象
class A :
    def test(self):
        print(A--------------test)
class B:
    def test(self):
        print(B--------------test)
class C(A,B):# A,B的位置决定调用方法的优先级
    def test1(self):
        print(c----------test)


c = C()


c.test()
#output:A--------------test 优先调用父类A类里的test
#print(c#output:<__main__.C object at 0x00000000028DA7C8>
#所有类的父类都是object,即对象
#没有直接的继承关系,可以这么定义类class A(object):

 

2.29多继承

标签:put   --   多重继承   tput   col   div   pre   对象   优先级   

原文地址:https://www.cnblogs.com/yescarf/p/12907066.html

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