python面向?qū)ο蟮闹饕锰幘褪谴a的重用,實(shí)現(xiàn)這一特點(diǎn)通過(guò)繼承,繼承創(chuàng)建的新類成為子類,被繼承的類稱為父類。
如果在子類中需要父類的構(gòu)造方法就需要顯示的調(diào)用父類的構(gòu)造方法,在調(diào)用基類的方法時(shí),需要加上基類的類名前綴,且需要帶上self參數(shù)變量。
下面我們開始來(lái)講解繼承和多繼承
首先我們創(chuàng)建兩個(gè)類,
父類:Father類子類:Child
父類中屬性為money,和一個(gè)方法play(),輸出
fatherplaywithme
來(lái)表示繼承父類的方法。在繼承的時(shí)候我們需要在子類中導(dǎo)入父類
父類的代碼如下:
classFather(object):
def__init__(self,money):
self.money=money
print('money',money)
defplay(self):
print('fatherplaywithme')
因?yàn)楹⒆邮抢^承父親的,所以孩子類中也有money屬性。所以我們直接用child來(lái)繼承Father類。
child代碼如下:
fromFatherimportFather
classChild(Mother,Father):
def__init__(self,money):
Father.__init__(self,money)
這個(gè)時(shí)候我們的child類就繼承來(lái)自父類的屬性money而且我們還繼承了來(lái)自父類的方法play(),我們可以直接調(diào)用。
來(lái)驗(yàn)證一下
fromChildimportChild
defmain():
c=Child(100)
c.play()
if__name__=='__main__':
main()
我們從輸出臺(tái)可以得到money100fatherplaywithme
多繼承
單繼承有時(shí)候可能滿足不了我們所需的所以我們就會(huì)遇到多繼承,這個(gè)同樣能夠展示出代碼的重用。
同樣是上邊的例子,child不僅僅是繼承來(lái)自父親,還繼承來(lái)自母親。所以我們創(chuàng)建mother類
classMother(object):
def__init__(self,face):
self.face=face
print('face',face)
defplay(self):
print('mothergoshoppingwithme')
mothe類創(chuàng)建的屬性為face,其次我們還定義的一個(gè)相同的方法play是為了展示多繼承中如果有相同的函數(shù)會(huì)調(diào)用哪個(gè)。
然后我們重寫一下child類
fromFatherimportFather
fromMotherimportMother
classChild(Mother,Father):
def__init__(self,money,face):
Father.__init__(self,money)
Mother.__init__(self,face)
以上內(nèi)容為大家介紹了Python培訓(xùn)之可以多繼承嗎,希望對(duì)大家有所幫助,如果想要了解更多Python相關(guān)知識(shí),請(qǐng)關(guān)注IT培訓(xùn)機(jī)構(gòu):千鋒教育。