class Bar(Fool):
def __init__(self, a, b, c, d):
Fool.__init__(self, a, b) # 调用父类初始化
self.c = c
self.d = d
def show_c(self):
print self.c
def show_d(self):
print self.d
foo_obj.show_a()
foo_obj.show_b()
foo_obj.show_c()
foo_obj.show_d()
多重继承
class MBar(Foo1, Foo2, Foo3, ...): ….
已有 22658 名学员学习以下课程通过考试
最需教育客户端 软件问题一手掌握
去 App Store 免费下载 iOS 客户端
点击加载更多评论>>