橋接模式(python)

來源:互聯網
上載者:User

橋接模式:將系統抽象部分與它的實現部分分離,使它們可以獨立地變化。

由於目標系統存在多個角度的分類,每一種分類都會有多種變化,那麼就可以把多角度分離出來,讓它們獨立變化減少它們之間的耦合

#encoding=utf-8##by panda#橋接模式def printInfo(info):    print unicode(info, 'utf-8').encode('gbk')#抽象類別:手機品牌class HandsetBrand():    soft = None    def SetHandsetSoft(self, soft):        self.soft = soft        def Run(self):        pass    #具體抽象類別:手機品牌1class HandsetBrand1(HandsetBrand):    def Run(self):        printInfo('手機品牌1:')        self.soft.Run()#具體抽象類別:手機品牌2class HandsetBrand2(HandsetBrand):    def Run(self):        printInfo('手機品牌2:')        self.soft.Run()    #功能類:手機軟體class HandsetSoft():    def Run(self):        pass#具體功能類:遊戲    class HandsetGame(HandsetSoft):    def Run(self):        printInfo('運行手機遊戲')        #具體功能類:通訊錄   class HandsetAddressList(HandsetSoft):    def Run(self):        printInfo('運行手機通訊錄')def clientUI():    h1 = HandsetBrand1()    h1.SetHandsetSoft(HandsetAddressList())    h1.Run()    h1.SetHandsetSoft(HandsetGame())    h1.Run()        h2 = HandsetBrand2()    h2.SetHandsetSoft(HandsetAddressList())    h2.Run()    h2.SetHandsetSoft(HandsetGame())    h2.Run()        returnif __name__ == '__main__':    clientUI();

類圖

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.