子類里訪問父類的同名屬性,而又不想直接引用父類的名字,因為說不定什么時候會去修改它,所以數據還是只保留一份的好。其實呢,還有更好的理由不去直接引用父類的名字,
這時候就該super()登場啦――
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 = frotzclass 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()`` 很好地解決了訪問父類中的方法的問題。
新聞熱點
疑難解答
圖片精選