Python 繼承實(shí)例
提問人:楊紫紅發(fā)布時(shí)間:2020-11-17
class Bar(Fool):
def __init__(self, a, b, c, d):
Fool.__init__(self, a, b) # 調(diào)用父類初始化
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, ...): ….
繼續(xù)查找其他問題的答案?
相關(guān)視頻回答
點(diǎn)擊加載更多評論>>