class A: def m(self): print('A') class B(A): def m(self): print('B') super().m() B().m()
當然 Python 2 里super() 是一定要參數的,所以得這么寫:
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下使用則需要稍作調整,如下代碼示例:
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
需要提到自己的名字。這個名字也是動態查找的,在這種情況下替換第三方庫中的類會出問題。
`super()`` 很好地解決了訪問父類中的方法的問題。
聲明:本網頁內容旨在傳播知識,若有侵權等問題請及時與本網聯系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com