Python中的super()方法使用簡介
更新時間:2015年08月14日 12:14:34 作者:weakish
這篇文章主要介紹了Python中的super()方法的使用,是Python入門學習中的基礎(chǔ)知識,需要的朋友可以參考下
子類里訪問父類的同名屬性,而又不想直接引用父類的名字,因為說不定什么時候會去修改它,所以數(shù)據(jù)還是只保留一份的好。其實呢,還有更好的理由不去直接引用父類的名字,
這時候就該super()登場啦——
class A:
def m(self):
print('A')
class B(A):
def m(self):
print('B')
super().m()
B().m()
當然 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
需要提到自己的名字。這個名字也是動態(tài)查找的,在這種情況下替換第三方庫中的類會出問題。
`super()`` 很好地解決了訪問父類中的方法的問題。
相關(guān)文章
pytorch 轉(zhuǎn)換矩陣的維數(shù)位置方法
今天小編就為大家分享一篇pytorch 轉(zhuǎn)換矩陣的維數(shù)位置方法,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧2018-12-12

