class A: def m(self): print('A') class B(A): def m(self): print('B') super().m() B().m()
當(dāng)然 Python 2 里super() 是一定要參數(shù)的,所以得這么寫:
class B(A): def m(self): print('B') super(B, self).m()
super在單繼承中使用的例子:
class Foo(): def __init__(self, frob, frotz) self.frobnicate = frob self.frotz = frotz class Bar(Foo): def __init__(self, frob, frizzle) super().__init__(frob, 34) self.frazzle = frizzle
此例子適合python 3.x,如果要在python2.x下使用則需要稍作調(diào)整,如下代碼示例:
class Foo(object): def __init__(self, frob, frotz): self.frobnicate = frob self.frotz = frotz class Bar(Foo): def __init__(self, frob, frizzle): super(Bar,self).__init__(frob,34) self.frazzle = frizzle new = Bar("hello","world") print new.frobnicate print new.frazzle print new.frotz
需要提到自己的名字。這個(gè)名字也是動(dòng)態(tài)查找的,在這種情況下替換第三方庫(kù)中的類會(huì)出問(wèn)題。
`super()`` 很好地解決了訪問(wèn)父類中的方法的問(wèn)題。
聲明:本網(wǎng)頁(yè)內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問(wèn)題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com