本文实例讲述了python设计模式之原型模式。分享给大家供大家参考,具体如下:
原型模式(prototype pattern):用原型实例指定创建对象的种类,并且通过拷贝这些原型创建新的对象
一个原型模式的简单demo:
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
|
#!/usr/bin/env python
# -*- coding:utf-8 -*-
__author__ = 'andy'
"""
大话设计模式
设计模式——原型模式
原型模式(prototype pattern):用原型实例指定创建对象的种类,并且通过拷贝这些原型创建新的对象
原型模式是用场景:需要大量的基于某个基础原型进行微量修改而得到新原型时使用
"""
from copy import copy, deepcopy
# 原型抽象类
class prototype( object ):
def clone( self ):
pass
def deep_clone( self ):
pass
# 工作经历类
class workexperience( object ):
def __init__( self ):
self .timearea = ''
self .company = ''
def set_workexperience( self ,timearea, company):
self .timearea = timearea
self .company = company
# 简历类
class resume(prototype):
def __init__( self ,name):
self .name = name
self .workexperience = workexperience()
def set_personinfo( self ,sex,age):
self .sex = sex
self .age = age
pass
def set_workexperience( self ,timearea, company):
self .workexperience.set_workexperience(timearea, company)
def display( self ):
print self .name
print self .sex, self .age
print '工作经历' , self .workexperience.timearea, self .workexperience.company
def clone( self ):
return copy( self )
def deep_clone( self ):
return deepcopy( self )
if __name__ = = '__main__' :
obj1 = resume( 'andy' )
obj2 = obj1.clone() # 浅拷贝对象
obj3 = obj1.deep_clone() # 深拷贝对象
obj1.set_personinfo( '男' , 28 )
obj1.set_workexperience( '2010-2015' , 'aa' )
obj2.set_personinfo( '男' , 27 )
obj2.set_workexperience( '2011-2017' , 'aa' ) # 修改浅拷贝的对象工作经历
obj3.set_personinfo( '男' , 29 )
obj3.set_workexperience( '2016-2017' , 'aa' ) # 修改深拷贝的对象的工作经历
obj1.display()
obj2.display()
obj3.display()
|
运行结果:
andy
男 28
工作经历 2011-2017 aa
andy
男 27
工作经历 2011-2017 aa
andy
男 29
工作经历 2016-2017 aa
上面类的设计如下图:
简历类resume继承抽象原型的clone和deepclone方法,实现对简历类的复制,并且简历类引用工作经历类,可以在复制简历类的同时修改局部属性
希望本文所述对大家python程序设计有所帮助。
原文链接:https://www.cnblogs.com/onepiece-andy/p/python_prototype_pattern.html