下面小編就為大家帶來一篇老生常談python之鴨子類和多型。小編覺得蠻不錯的,現在就分享給大家,也給大家做個參考。一起跟著小編過來看看吧
一、 什麼是多態
<1>一種型別具有多種型別的能力
<2>允許不同的物件對同一訊息做出靈活的反應
<3>以一種通用的方式對待個使用的物件
<4>非動態語言必須透過繼承和介面的方式來實現
二、python中的多態
<1>通过继承实现多态(子类可以作为父类来使用) <2>子类通过重载父类的方法实现多态 class Animal: def move(self): print('animal is moving....') class Dog(Animal): pass def move(obj): obj.move() >>>move(Animal()) >>>animal is moving.... >>>move(Dog()) >>>animal is moving.... class Fish(Animal): def move(self): print('fish is moving....') >>>move(Fish()) >>>fish is moving....
三、動態語言和鴨子類型
<1>變數綁定的類型是不確定的
<2>函數和方法可以接收任何類型的參數
<3>呼叫方法時不檢查提供的參數型別
<4>呼叫是否成功有參數的方法和屬性確定,呼叫不成功則拋出錯誤
<5>不用實作介面
class P: def init(self, x, y): self.x = x self.y = y def add(self, oth): return P(self.x+oth.x, self.y+oth.y) def info(self): print(self.x, self.y) class D(P): def init(self, x, y, z): super.init(x, y) self.z = z def add(self, oth): return D(self.x+oth.x, self.y+oth.y, self.z+oth.z) def info(self): print(self.x, self.y, self.z) class F: def init(self, x, y, z): self.x = x self.y = y self.z = z def add(self, oth): return D(self.x+oth.x, self.y+oth.y, self.z+oth.z) def info(self): print(self.x, self.y, self.z) def add(a, b): return a + b if name == 'main': add(p(1, 2), p(3, 4).info()) add(D(1, 2, 3), D(1, 2, 3).info()) add(F(2, 3, 4), D(2, 3, 4).info())
#四、 多態的好處
< ;1>可實現開放的擴展和修改的封閉
<2>使python程式更加的靈活
以上是分享python中鴨子類別和多型實例的詳細內容。更多資訊請關注PHP中文網其他相關文章!