马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
本帖最后由 汪蛋 于 2017-9-7 21:37 编辑
知识点一:超厉害的superclass Ball:
def __init__(self):
self.color = 'yellow'
def hello(self):
print("Hello, this ball is %s" % self.color)
class BallA(Ball):
def __init__(self):
print("This ball is A")
运行上面一段代码,会发现,BallA类虽然继承了Ball类,但是由于子类的__init__函数覆盖了基类的__init__,导致在BallA中并没有给self.color赋值,也就是BallA无法正常继承hello函数。可以有两种办法解决这个问题,Ball类不变,将BallA做如下改进:# 方法一:
class BallA(Ball):
def __init__(self):
Ball.__init__(self)
print("This ball is A")
# 方法二:
class BallA(Ball):
def __init__(self):
super().__init__()
print("This ball is A")
super的好处在于,当基类为多个时,仍然只需要这一条语句就可以解决了,而方法一则需要针对每一个基类写一条。是不是很厉害丫~~~
知识点二:多重继承class BallA:
def hello1(self):
print("This ball is A")
class BallB:
def hello2(self):
print("This ball is A")
class C(BallA, BallB):
pass
c = C()
c.hello1()
c.hello2()
如果BallA和BallB中的hello函数名设为同一个,那么只会输出BallA中的hello。 |