設計模式之python版(八)–面板模式

來源:互聯網
上載者:User

面板模式:
應用特性:
在很多複雜而小功能需要調用需求時,而且這些調用往往還有一定相關性,即一調用就是一系列的。
結構特性:

把原本複雜而繁多的調用,規劃統一到一個入口類中,從此只通過這一個入口調用就可以了。

class small_or_piece1:    def __init__(self):        pass        def do_small1(self):        print 'do small 1'    class small_or_piece_2:    def __init__(self):        pass        def do_small2(self):        print 'do small 2'    class small_or_piece_3:    def __init__(self):        pass        def do_small3(self):        print 'do small 3'class outside:    def __init__(self):        self.__small1 = small_or_piece1()        self.__small2 = small_or_piece_2()        self.__small3 = small_or_piece_3()        def method1(self):        self.__small1.do_small1()    ##如果這裡調用的不只2兩函數,作用就顯示出來了,可以把原本複雜的函數調用關係清楚化,統一化        self.__small2.do_small2()            def method2(self):        self.__small2.do_small2()        self.__small3.do_small3()if __name__ == '__main__':    osd = outside()    osd.method1()    osd.method2()

結果:

do small 1do small 2do small 2do small 3

相關文章

聯繫我們

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