Factory 方法(python)

來源:互聯網
上載者:User

簡單原廠模式的最大優點就是工廠類內部包含了必要的邏輯判斷,用戶端只要提供選擇條件即可,這樣用戶端就不需要知道具體產品的資訊了。
但是每次增加產品就要修改工廠類,違背了“開放-封閉”原則。
所以,有了Factory 方法模式
Factory 方法模式:定義一個用於建立對象的介面,讓子類決定執行個體化哪一個類。

Factory 方法模式相對於簡單原廠模式的
優點在於,抽象了產品工廠這個類,讓它變成了一個介面,只要某個類實現了這個介面,它就可以被當做工廠類來用,這樣每添加一個產品的時候,就添加一下相應的生產工廠類,其它地方就可以使用了,滿足“開放-封閉”原則;

缺點在於,把生產產品的邏輯判斷從工廠中剝離了出去。

#encoding=utf-8##by panda#Factory 方法模式def printInfo(info):    print unicode(info, 'utf-8').encode('gbk')#雷鋒class LeiFeng():    def Sweep(self):        printInfo('掃地')            def Wash(self):        printInfo('洗衣')            def BuyRice(self):        printInfo('買米')#學雷鋒的大學生class Undergraduate(LeiFeng):    def __init__(self):        printInfo('學雷鋒的大學生')        pass    #社區志願者class Volunteer(LeiFeng):    def __init__(self):        printInfo('社區志願者')        pass#簡單雷鋒工廠class SimpleFactory():    @staticmethod    def CreateLeiFeng(type):        if type == '學雷鋒的大學生':            return Undergraduate()        elif type == '社區志願者':            pass          #雷鋒抽象工廠class IFactory():    @staticmethod    def CreateLeiFeng():        return LeiFeng()   #學雷鋒的社區志願者工廠class VolunteerFactory(IFactory):    @staticmethod    def CreateLeiFeng():        return Volunteer()#學雷鋒的大學生工廠class UndergraduateFactory(IFactory):    @staticmethod    def CreateLeiFeng():        return Undergraduate()def clientUI():    printInfo('----------------簡單原廠模式--------------')    studentA = SimpleFactory.CreateLeiFeng('學雷鋒的大學生')    studentA.BuyRice()    studentA.Sweep()    studentA.Wash()        printInfo('----------------Factory 方法模式--------------')    studentB = VolunteerFactory.CreateLeiFeng()    studentB.BuyRice()    studentB.Sweep()    studentB.Wash()    returnif __name__ == '__main__':    clientUI();

類圖:這是計算機改成Factory 方法模式的類圖,學雷鋒的類圖類似。

相關文章

聯繫我們

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