python中的介面

來源:互聯網
上載者:User

python中的介面

什麼是介面 ?

介面只是定義了一些方法,而沒有去實現,多用於程式設計時,只是設計需要有什麼樣的功能,但是並沒有實現任何功能,這些功能需要被另一個類(B)繼承後,由 類B去實現其中的某個功能或全部功能。

個人的理解,多用於協作開發時,有不同的人在不同的類中實現介面中的各個方法。

在python中介面由抽象類別和抽象方法去實現,介面是不能被執行個體化的,只能被別的類繼承去實現相應的功能。

個人覺得介面在python中並沒有那麼重要,因為如果要繼承介面,需要把其中的每個方法全部實現,否則會報編譯錯誤,還不如直接定義一個class,其中的方法實現全部為pass,讓子類重寫這些函數。

當然如果有強制要求,必須所有的實作類別都必須按照介面中的定義寫的話,就必須要用介面。

方法一:用抽象類別和抽象函數實現方法

 

#抽象類別加抽象方法就等於物件導向編程中的介面from abc import ABCMeta,abstractmethodclass interface(object):    __metaclass__ = ABCMeta #指定這是一個抽象類別    @abstractmethod  #抽象方法    def Lee(self):        pass        def Marlon(self):        passclass RelalizeInterfaceLee(interface):#必須實現interface中的所有函數,否則會編譯錯誤    def __init__(self):            print '這是介面interface的實現'    def Lee(self):        print '實現Lee功能'            def Marlon(self):        pass    class RelalizeInterfaceMarlon(interface): #必須實現interface中的所有函數,否則會編譯錯誤    def __init__(self):            print '這是介面interface的實現'    def Lee(self):        pass          def Marlon(self):        print "實現Marlon功能" 

方法二:用普通類定義介面,

 

 

class interface(object): #假設這就是一個介面,介面名可以隨意定義,所有的子類不需要實現在這個類中的函數    def Lee(self):,        pass        def Marlon(self):        pass class Realaize_interface(interface):    def __init__(self):        pass    def Lee(self):        print "實現介面中的Lee函數"                class Realaize_interface2(interface):    def __init__(self):        pass    def Marlon(self):        print "實現介面中的Marlon函數"     obj=Realaize_interface()obj.Lee()obj=Realaize_interface2()obj.Marlon()


 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.