了解Shuttle類怎樣在python3中生成?這個(gè)問題可能是我們?nèi)粘W(xué)習(xí)或工作經(jīng)常見到的。希望通過這個(gè)問題能讓你收獲頗深。下面是小編給大家?guī)淼膮⒖純?nèi)容,讓我們一起來看看吧!
成都創(chuàng)新互聯(lián)公司憑借專業(yè)的設(shè)計(jì)團(tuán)隊(duì)扎實(shí)的技術(shù)支持、優(yōu)質(zhì)高效的服務(wù)意識(shí)和豐厚的資源優(yōu)勢(shì),提供專業(yè)的網(wǎng)站策劃、成都網(wǎng)站制作、網(wǎng)站設(shè)計(jì)、外貿(mào)網(wǎng)站建設(shè)、網(wǎng)站優(yōu)化、軟件開發(fā)、網(wǎng)站改版等服務(wù),在成都十載的網(wǎng)站建設(shè)設(shè)計(jì)經(jīng)驗(yàn),為成都數(shù)千家中小型企業(yè)策劃設(shè)計(jì)了網(wǎng)站。如果你想模擬一個(gè)航天飛船,你可能要寫一個(gè)新的類。但是航天飛機(jī)是火箭的一種特殊形式。你可以繼承 Rocket 類,添加一些新的屬性和方法,生成一個(gè) Shuttle 類而不是新建一個(gè)類。
航天飛船的一個(gè)重要特性是他可以重用。因此我們添加記錄航天飛船服役的次數(shù)。其他基本和 Rocket 類相同。
實(shí)現(xiàn)一個(gè) Shuttle 類,如下所示:
from math import sqrt class Rocket(): # Rocket simulates a rocket ship for a game, # or a physics simulation. def __init__(self, x=0, y=0): # Each rocket has an (x,y) position. self.x = x self.y = y def move_rocket(self, x_increment=0, y_increment=1): # Move the rocket according to the paremeters given. # Default behavior is to move the rocket up one unit. self.x += x_increment self.y += y_increment def get_distance(self, other_rocket): # Calculates the distance from this rocket to another rocket, # and returns that value. distance = sqrt((self.x-other_rocket.x)**2+(self.y-other_rocket.y)**2) return distance class Shuttle(Rocket): # Shuttle simulates a space shuttle, which is really # just a reusable rocket. def __init__(self, x=0, y=0, flights_completed=0): super().__init__(x, y) self.flights_completed = flights_completed shuttle = Shuttle(10,0,3) print(shuttle)
當(dāng)一個(gè)子類要繼承父類時(shí),在定義子類的圓括號(hào)中填寫父類的類名:
class NewClass(ParentClass):
新類的 __init__() 函數(shù)需要調(diào)用新類的 __init__() 函數(shù)。新類的 __init__() 函數(shù)接受的參數(shù)需要傳遞給父類的 __init__() 函數(shù)。由 super().__init__() 函數(shù)負(fù)責(zé):
class NewClass(ParentClass): def __init__(self, arguments_new_class, arguments_parent_class): super().__init__(arguments_parent_class) # Code for initializing an object of the new class.
super()函數(shù)會(huì)自動(dòng)將self參數(shù)傳遞給父類。你也可以通過用父類的名字實(shí)現(xiàn),但是需要手動(dòng)傳遞self參數(shù)。如下所示:
class Shuttle(Rocket): # Shuttle simulates a space shuttle, which is really # just a reusable rocket. def __init__(self, x=0, y=0, flights_completed=0): Rocket.__init__(self, x, y) self.flights_completed = flights_completed
這樣寫看起來可讀性更高,但是我們更傾向于用 super() 的語法。當(dāng)你使用 super() 的時(shí)候,不必關(guān)心父類的名字,以后有改變時(shí)會(huì)變得更加靈活。而且隨著繼承的學(xué)習(xí),以后可能會(huì)出現(xiàn)一個(gè)子類繼承自多個(gè)父類的情況,使用 super() 語法就可以在一行內(nèi)調(diào)用所有父類的 __init__() 方法。
感謝各位的閱讀!看完上述內(nèi)容,你們對(duì)Shuttle類怎樣在python3中生成大概了解了嗎?希望文章內(nèi)容對(duì)大家有所幫助。如果想了解更多相關(guān)文章內(nèi)容,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。
當(dāng)前標(biāo)題:Shuttle類怎樣在python3中生成-創(chuàng)新互聯(lián)
地址分享:http://aaarwkj.com/article34/gcipe.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站收錄、網(wǎng)站營(yíng)銷、關(guān)鍵詞優(yōu)化、微信公眾號(hào)、網(wǎng)站維護(hù)、企業(yè)網(wǎng)站制作
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容