簡單原廠模式的最大優點就是工廠類內部包含了必要的邏輯判斷,用戶端只要提供選擇條件即可,這樣用戶端就不需要知道具體產品的資訊了。
但是每次增加產品就要修改工廠類,違背了“開放-封閉”原則。
所以,有了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 方法模式的類圖,學雷鋒的類圖類似。