# -*- coding: utf-8 -*-
# author: zhonghua
# filename: pd_factory.py
# create: 2016/3/28
# version: 1.0
''' 简单工厂模式
本例以《设计模式之禅》为版本
'''
class Human:
def get_color(self):
pass
def talk(self):
pass
class BlackHuman(Human):
def get_color(self):
print '黑色人种的皮肤颜色是黑色的!'
def talk(self):
print '黑人会说话,一般人听不懂。'
class YellowHuman(Human):
def get_color(self):
print '黄色人种的皮肤颜色是黄色的!'
def talk(self):
print '黄色人种会说话,一般说的都是双字节。'
class WhiteHuman(Human):
def get_color(self):
print '白色人种的皮肤颜色是白色的!'
def talk(self):
print '白色人种会说话,一般都是但是单字节。'
class AbstractHumanFactory:
def create_human(self, c):
pass
class HumanFactory(AbstractHumanFactory):
def create_human(self, c):
human = None
if c == 'black':
return BlackHuman()
elif c == 'yellow':
return YellowHuman()
elif c == 'white':
return WhiteHuman()
else:
return
if __name__ == '__main__':
yinyanglu = HumanFactory()
print '开始制造白人.....'
whitehuman = yinyanglu.create_human('white')
whitehuman.get_color()
whitehuman.talk()
print '*'*20
print '开始制造黄人.....'
yellowhuman = yinyanglu.create_human('yellow')
yellowhuman.get_color()
yellowhuman.talk()
print '*'*20
print '开始制造黑人.....'
blackhuman = yinyanglu.create_human('black')
blackhuman.get_color()
blackhuman.talk()
print '*'*20
Python 设计模式 简单工厂(设计模式之禅)
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 面向对象思想设计原则 在实际的开发中,我们要想更深入的了解面向对象思想,就必须熟悉前人总结过的面向对象的思想的设计...
- 哲学上说“是什么,为什么,怎么用”是认识问题的逻辑思维过程. 本文将以厂长工厂造车为例子讲述这三种设计模式。 简单...
- 本系列文章是希望将软件项目中最常见的设计模式用通俗易懂的语言来讲解清楚,并通过Python来实现,每个设计模式都是...
- 简单工厂模式(工厂方法模式的小弟) 简单工厂模式并不属于GoF23个经典设计模式,但通常作为23个设计模式的基础。...