Python 继承实例
提问人:杨紫红发布时间:2020-11-17
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, ...): ….
继续查找其他问题的答案?
相关视频回答
回复(0)
点击加载更多评论>>