設計模式之python版(九)–建造者模式

來源:互聯網
上載者:User

建造者模式:

應用特性:同類化創造相同模組,避免遺漏固有屬性

結構特性:把創造的流程正常化,每個流程的具體任務可以自訂化,建造過程批量化。

#!/usr/bin/env python  #encoding: utf-8class product:    def __init__(self):        self.parts = []        def add(self, strings):        self.parts.append(strings)            def show(self):        print 'Product Create:'        for part in self.parts:            print partclass base:    def __init__(self):        pass        def buildA(self):        pass        def buildB(self):        pass        def getRault(self):        pass        class child1(base):    def __init__(self):        self.pdt = product()        def buildA(self):        self.pdt.add('child A')        def buildB(self):        self.pdt.add('child B')        def getRault(self):        return self.pdt        class child2(base):    def __init__(self):        self.pdt = product()        def buildA(self):        self.pdt.add('child X')        def buildB(self):        self.pdt.add('child Y')        def getRault(self):        return self.pdt    class derictor:    def __init__(self):        pass        def construct(self, chld):        chld.buildA()        chld.buildB()        if '__main__' == __name__:    dct = derictor()    chld1 = child1()    chld2 = child2()    dct.construct(chld1)    prod1 = chld1.getRault()    prod1.show()        dct.construct(chld2)    prod2 = chld2.getRault()    prod2.show() 

結果:

Product Create:child Achild BProduct Create:child Xchild Y

相關文章

聯繫我們

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