python-超继承
2021-04-12 12:27
标签:pytho add 重写 父类 sub mamicode python 就是 mic 超继承,就是父类的,子类会要,同时也会有自己的方法属性 python-超继承 标签:pytho add 重写 父类 sub mamicode python 就是 mic 原文地址:https://www.cnblogs.com/caoxiaowei/p/13354252.htmlclass MatchMethod:
def __init__(self,a,b):
self.a=a
self.b=b
def add(self):
return self.a+self.b
def sub(self):
return self.a-self.b
class MatchMethod_1(MatchMethod):
def divide(self):
return self.a/self.b
def add(self):#重写
super(MatchMethod_1,self).add()#超继承
print(‘我说子类的加法‘,self.a+self.b)
if __name__ == ‘__main__‘:
MatchMethod_1(1,2).add()