溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Python設(shè)計(jì)模式之原型模式實(shí)例詳解

發(fā)布時(shí)間:2020-09-09 06:15:54 來(lái)源:腳本之家 閱讀:174 作者:Andy冉明 欄目:開(kāi)發(fā)技術(shù)

本文實(shí)例講述了Python設(shè)計(jì)模式之原型模式。分享給大家供大家參考,具體如下:

原型模式(Prototype Pattern):用原型實(shí)例指定創(chuàng)建對(duì)象的種類,并且通過(guò)拷貝這些原型創(chuàng)建新的對(duì)象

一個(gè)原型模式的簡(jiǎn)單demo:

#!/usr/bin/env python
# -*- coding:utf-8 -*-
__author__ = 'Andy'
"""
大話設(shè)計(jì)模式
設(shè)計(jì)模式——原型模式
原型模式(Prototype Pattern):用原型實(shí)例指定創(chuàng)建對(duì)象的種類,并且通過(guò)拷貝這些原型創(chuàng)建新的對(duì)象
原型模式是用場(chǎng)景:需要大量的基于某個(gè)基礎(chǔ)原型進(jìn)行微量修改而得到新原型時(shí)使用
"""
from copy import copy, deepcopy
# 原型抽象類
class Prototype(object):
  def clone(self):
    pass
  def deep_clone(self):
    pass
# 工作經(jīng)歷類
class WorkExperience(object):
  def __init__(self):
    self.timearea = ''
    self.company = ''
  def set_workexperience(self,timearea, company):
    self.timearea = timearea
    self.company = company
# 簡(jiǎn)歷類  
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 '工作經(jīng)歷',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() # 淺拷貝對(duì)象
  obj3 = obj1.deep_clone() # 深拷貝對(duì)象
  obj1.set_personinfo('男',28)
  obj1.set_workexperience('2010-2015','AA')
  obj2.set_personinfo('男',27)
  obj2.set_workexperience('2011-2017','AA') # 修改淺拷貝的對(duì)象工作經(jīng)歷
  obj3.set_personinfo('男',29)
  obj3.set_workexperience('2016-2017','AA') # 修改深拷貝的對(duì)象的工作經(jīng)歷
  obj1.display()
  obj2.display()
  obj3.display()

運(yùn)行結(jié)果:

andy
男 28
工作經(jīng)歷 2011-2017 AA
andy
男 27
工作經(jīng)歷 2011-2017 AA
andy
男 29
工作經(jīng)歷 2016-2017 AA

上面類的設(shè)計(jì)如下圖:

Python設(shè)計(jì)模式之原型模式實(shí)例詳解

簡(jiǎn)歷類Resume繼承抽象原型的clone和deepclone方法,實(shí)現(xiàn)對(duì)簡(jiǎn)歷類的復(fù)制,并且簡(jiǎn)歷類引用工作經(jīng)歷類,可以在復(fù)制簡(jiǎn)歷類的同時(shí)修改局部屬性

更多關(guān)于Python相關(guān)內(nèi)容可查看本站專題:《Python數(shù)據(jù)結(jié)構(gòu)與算法教程》、《Python Socket編程技巧總結(jié)》、《Python函數(shù)使用技巧總結(jié)》、《Python字符串操作技巧匯總》及《Python入門與進(jìn)階經(jīng)典教程》

希望本文所述對(duì)大家Python程序設(shè)計(jì)有所幫助。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI