Exemplo n.º 1
0
    def __init__(self, money, faceValue):
        '''
		多继承时,调用父类构造方法的格式:父类名.__init__(self,[,参数列表])
		单继承时,调用父类构造方法的格式:super.__init__(self,[,参数列表])
		'''
        Father.__init__(self, money)
        Mother.__init__(self, faceValue)
Exemplo n.º 2
0
 def __init__(self, money, faceValue):
     Father.__init__(self, money)
     Mother.__init__(self, faceValue)
Exemplo n.º 3
0
 def __init__(self, money, face):
     Father.__init__(self, money=money)
     Mather.__init__(self, face=face)
Exemplo n.º 4
0
    def __init__(self, money, facevalue):
        Father.__init__(self, money)
        Mother.__init__(self, facevalue)

        print(Father.eat(self))
        print(Mother.eat(self))
Exemplo n.º 5
0
 def __init__(self, money, faceValue):
     Father.__init__(self, money)
     Mother.__init__(self, faceValue)
     self.height = 170