設計模式之python版(一)–原廠模式

來源:互聯網
上載者:User

原廠模式:

應用特性:其實原廠模式就是建立對象模式,你想要什麼就給你建立什麼對象。通常接收一個要求,返回一個要求的對象。

結構特性:一個獨立的各類對象的產生器。

UML:

#!/usr/bin/env python#encoding: utf-8class baseclass:    def __init__(self):          pass        def dosomething(self):        pass    class newclass1(baseclass):    def __init__(self):        pass        def dosomething(self):        print 'dosomething1'        class newclass2(baseclass):    def __init__(self):        pass        def dosomething(self):        print 'dosomething2'        class newclass3(baseclass):    def __init__(self):        pass        def dosomething(self):        print 'dosomething3'          class createclass:    def __init__(self):        pass        @staticmethod    def get_new_class(something):        if 'newclass1' == something:            return newclass1()        elif 'newclass2' == something:            return newclass2()        elif 'newclass3' == something:            return newclass3()        else:            return None                if '__main__' == __name__:    class1 = createclass.get_new_class('newclass1')    class2 = createclass.get_new_class('newclass2')    class3 = createclass.get_new_class('newclass3')    print class1.__class__    print class2.__class__    print class3.__class__        

結果:

__main__.newclass1__main__.newclass2__main__.newclass3

相關文章

聯繫我們

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