本文实例讲述了python设计模式之简单工厂模式。分享给大家供大家参考,具体如下:
简单工厂模式(simple factory pattern):是通过专门定义一个类来负责创建其他类的实例,被创建的实例通常都具有共同的父类.
下面使用简单工厂模式实现一个简单的四则运算
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
#!/usr/bin/env python
# -*- coding:utf-8 -*-
__author__ = 'andy'
'''
大话设计模式
用任意一种面向对象语言实现一个计算器控制台程序。要求输入两个数和运算符号,得到结果
设计模式——简单工厂模式
简单工厂模式(simple factory pattern):是通过专门定义一个类来负责创建其他类的实例,被创建的实例通常都具有共同的父类。
'''
class operation( object ):
'''
四则运算的父类,接收用户输入的数值
'''
def __init__( self , number1 = 0 , number2 = 0 ):
self .num1 = number1
self .num2 = number2
def getresult( self ):
pass
pass
#加法运算类
class operationadd(operation):
def getresult( self ):
return self .num1 + self .num2
#减法运算类
class operationsub(operation):
def getresult( self ):
return self .num1 - self .num2
#乘法运算类
class operationmul(operation):
def getresult( self ):
return self .num1 * self .num2
#除法运算类
class operationdiv(operation):
def getresult( self ):
if self .num2 = = 0 :
return '除数不能为0 '
return 1.0 * self .num1 / self .num2
#其他操作符类
class operationundef(operation):
def getresult( self ):
return '操作符错误'
#简单工厂类
class operationfactory( object ):
def choose_oper( self ,ch):
if ch = = '+' :
return operationadd()
elif ch = = '-' :
return operationsub()
elif ch = = '*' :
return operationmul()
elif ch = = '/' :
return operationdiv()
else :
return operationundef()
if __name__ = = "__main__" :
ch = ''
while not ch = = 'q' :
num1 = input ( '请输入第一个数值: ' )
oper = str ( raw_input ( '请输入一个四则运算符: ' ))
num2 = input ( '请输入第二个数值: ' )
# operation(num1,num2)
of = operationfactory()
oper_obj = of.choose_oper(oper)
oper_obj.num1 = num1
oper_obj.num2 = num2
print '运算结果为: ' ,oper_obj.getresult()
|
运行结果:
请输入第一个数值: 51
请输入一个四则运算符: -
请输入第二个数值: 15
运算结果为: 36
这几个类的结构图如下:
专门定义一个operation类作为父类,加减乘除运算类继承operation类,operationfactory类用来决定什么时候创建对应的类
希望本文所述对大家python程序设计有所帮助。
原文链接:https://www.cnblogs.com/onepiece-andy/p/python-simple-factory-pattern.html