Python 3.6:多型的實現

gaopengtttt發表於2018-03-15
多型的作用不用多說,C++用如下條件來實現多型:

1 要有繼承
2 要有虛擬函式函式重寫
3 要有父類指標(父類引用)指向子類物件

實際上C++使用VPTR指標來完成這個事情,其是設計模式的基礎,軟體分層的基石。
最近看了一下Pyhon,很欣慰python3.6(因為我學的時候已經是3.6了)中支援不錯,基
本也是遵循C++的3個要點需要模組支援如下:
from abc import ABC,abstractmethod
程式碼如下:

抽象類:

點選(此處)摺疊或開啟

  1. #在C++中使用如下3個條件實現多型
  2. #1、虛擬函式從寫
  3. #2、父類指標指向子類物件
  4. #3、繼承
  5. #python 3.6中也可以使用方便使用抽象類 from abc import ABC,abstractmethod
  6. from abc import ABC, abstractmethod

  7. class Handller(ABC): ##抽象類
  8.     @abstractmethod ##指定為介面函式 類似C++的純虛擬函式
  9.     def test(self):
  10.         pass

實現類:


點選(此處)摺疊或開啟

  1. import ABC
  2. part = 0
  3. #兩個類繼承來自同一個抽象類
  4. class Child_1(ABC.Handller): #繼承
  5.     def __init__(self,b,c):
  6.         self.name = b
  7.         self.age = c
  8.     def test(self): #類似C++虛擬函式重寫函式
  9.         print("this is test {} {}".format(self.name,self.age))
  10. class Child_2(ABC.Handller): #繼承
  11.     a = 0
  12.     def __init__(self,a):
  13.         self.name = a
  14.     def test(self): #類似C++虛擬函式重寫函式
  15.         print("this is test {}".format(self.name))
  16. class Do_thing():
  17.     @staticmethod
  18.     def test_do_thing(handler): #統一呼叫介面
  19.         handler.test()

  20. a = Child_1('gaopeng',30)
  21. b = Child_2('gaopeng')
  22. Do_thing.test_do_thing(a) ##多型 父類指標指向子類物件
  23. Do_thing.test_do_thing(b) ##多型 父類指標指向子類物件

執行結果:

this is test gaopeng 30
this is test gaopeng 

簡短測試但是麻雀雖小五臟俱全。

Python 3.6:多型的實現


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/7728585/viewspace-2151873/,如需轉載,請註明出處,否則將追究法律責任。

相關文章