跳到主要內容


python-設計模式-原型模式

python
設計模式
原型模式


import copy 
class Prototype: 
   def __init__(self): 
      self.obj = {} 
   def Registor(self, key,new_obj): 
      self.obj[key] = new_obj 
   def UnRegistor(self, key): 
      del self.obj[key]
   def DeepClone(self, name, **attr): 
      obj_clone = copy.deepcopy(self.obj.get(name)) 
      obj_clone.__dict__.update(attr) 
      return obj_clone 
   def Clone(self, name, **attr): 
      obj_clone = copy.copy(self.obj.get(name)) 
      obj_clone.__dict__.update(attr) 
      return obj_clone 

class a: 
   def __init__(self): 
      self.name = ['a1','a2'] 

class b: 
   def __init__(self): 
      self.name = 'b' 

a = a() 
b = b() 

P = Prototype()
P.Registor('a',a)
P.Registor('b',b)


aDeepClone = P.DeepClone('a') 
aClone = P.Clone('a')
a.name[0] = 'new_a' 

bDeepClone = P.DeepClone('a') 
bClone = P.Clone('a') 
b.name = 'new_b' 

print('A DeepClone') 
print(a.name, aDeepClone.name) 
print('A Clone') print(a.name, aClone.name) 
print('----------------------') 
print('B DeepClone') 
print(b.name, bDeepClone.name) 
print('B Clone') 
print(b.name, bClone.name) P.UnRegistor('b')


程式碼說明:
在python實作prototype需要使用copy模組來實行,在做深層複製時沒有問題,在做淺層複製時,若複製對象不是list對於結果會有錯誤的預期

prototype類別定義prototype的工作,複製、註冊物件、刪除物件。
定義需要複製的類別A、類別B,並註冊到prototype物件中
類別A為list形式
類別B為字串形式
分別進行深層複製、淺層複製。
在修蓋內容,list則修正部分,會發現到list跟一般定義的深層複製、淺層複製結果會一樣,但在一般變數的部分則不。

需要探討為什麼複製結果會這樣。

留言

這個網誌中的熱門文章

程式語言學習概論(1)

程式語言 介紹

Python-設計模式-共享模式

Python 設計模式 共享模式 class Font:     def __init__(self):        self.Size = 0        self.Type = ''     def printAll(self):        print(self.Size, self.Type)  class FontFacotry:     def Word(self, Size=3, Type='1'):        F = Font()        F.Size = Size        F.Type = Type        return F  FontSize = [1,2,3] FontType = ['1','2','3'] Facotry = FontFacotry()  F1 = Facotry.Word(FontSize[0],FontType[0])  F1.printAll()  F2 = Facotry.Word( FontSize[1],FontType[1] ) F2.printAll()  F3 = Facotry.Word( FontSize[2],FontType[2] ) F3.printAll() 程式碼說明 font 定義類別 fontFacotry物件生成工廠 fontsize用來儲存font大小的外部空間 fonttype用來儲存font種類的外部空間

Python-設計模式-建造者模式

Python 設計模式 建造者模式 範例一 class Product:     def __init__(self):        self.name=''       self.parameter1 = ''       self.parameter2 = ''       self.parameter3 = '' class Builder:    def __init__(self):       self.product = None     def SetName(self):        pass     def SetParameter1(self):        pass     def SetParameter2(self):        pass     def SetParameter3(self):        pass  class Product1Builder(Builder):     def SetName(self):        self.product.name = 'Product1'    def SetParameter(self):        self.product.parameter1 = '1-1'     def SetParameter(self):        self.product.parameter2 = '1-2'  ...