码迷,mamicode.com
首页 > 编程语言 > 详细

python 多继承的实现

时间:2020-02-14 12:45:13      阅读:65      评论:0      收藏:0      [点我收藏+]

标签:other   ace   __init__   多继承   def   父类   sel   obj   fat   

第一类多继承的实现
from Child import Child
def main():
c = Child(300, 100)
print(c.money, c.faceValue)
c.play()
c.eat()
#注意:父类中方法名相同,默认调用的是在括号中排前面的父类中的方法
c.func()
if __name__ == "__main__":
main()

第二类Mother
class Mother(object):
def __init__(self, faceValue):
self.faceValue = faceValue
def eat(self):
print("eat")
def func(self):
print("func2")

第三类Father
class Father(object):
def __init__(self, money):
self.money = money
def play(self):
print("play")
def func(self):
print("func1")

第四类Child
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)

python 多继承的实现

标签:other   ace   __init__   多继承   def   父类   sel   obj   fat   

原文地址:https://www.cnblogs.com/pygo/p/12306867.html

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