原型設計模式有助於隱藏該類建立例項的複雜性,在物件的概念將與從頭建立的新物件的概念不同。
如果需要,新複製的物件可能會在屬性中進行一些更改。這種方法節省了開發產品的時間和資源。
如何實現原型模式?
現在讓我們看看如何實現原型模式。**實現如下 -
import copy
class prototype:
_type = none
_value = none
def clone(self):
pass
def gettype(self):
return self._type
def getvalue(self):
return self._value
class type1(prototype):
def __init__(self, number):
self._type = "type1"
self._value = number
def clone(self):
return copy.copy(self)
class type2(prototype):
""" concrete prototype. """
def __init__(self, number):
self._type = "type2"
self._value = number
def clone(self):
return copy.copy(self)
class objectfactory:
""" manages prototypes.
static factory, that encapsulates prototype
initialization and then allows instatiation
of the classes from these prototypes.
__type1value1 = none
__type1value2 = none
__type2value1 = none
__type2value2 = none
@staticmethod
def initialize():
objectfactory.__type1value1 = type1(1)
objectfactory.__type1value2 = type1(2)
objectfactory.__type2value1 = type2(1)
objectfactory.__type2value2 = type2(2)
@staticmethod
def gettype1value1():
return objectfactory.__type1value1.clone()
@staticmethod
def gettype1value2():
return objectfactory.__type1value2.clone()
@staticmethod
def gettype2value1():
return objectfactory.__type2value1.clone()
@staticmethod
def gettype2value2():
return objectfactory.__type2value2.clone()
def main():
objectfactory.initialize()
instance = objectfactory.gettype1value1()
print "%s: %s" % (instance.gettype(), instance.getvalue())
instance = objectfactory.gettype1value2()
print "%s: %s" % (instance.gettype(), instance.getvalue())
instance = objectfactory.gettype2value1()
print "%s: %s" % (instance.gettype(), instance.getvalue())
instance = objectfactory.gettype2value2()
print "%s: %s" % (instance.gettype(), instance.getvalue())
if __name__ == "__main__":
main()
執行上面程式,將生成以下輸出 -
輸出中,使用現有的物件建立新物件,並且在上述輸出中清晰可見。
¥ 我要打賞
糾錯/補充
收藏加qq群啦,易百教程官方技術學習群
注意:建議每個人選自己的技術方向**,同乙個qq最多限加 3 個群。
設計模式 原型模式
1.首先分析原型模式的由來 一般來說,建立乙個物件可以由以下方法 知道物件的具體型別,直接用new生成。不知道型號,知道相應的需求,可以使用工廠方法模式。根據乙個已有的物件來複製為乙個新的物件,可以使用原型模式。2.原型模式可以簡單理解為拷貝原型物件得到新的物件。想象乙個配鑰匙的小店,給店主乙個原有...
設計模式 原型模式
魔術師手拿一張百元大鈔,瞬間又變出兩張。也像配鑰匙一樣,拿一把鑰匙,老師傅就能做出另乙個一模一樣的。像這種複製我們並不陌生,類似於我們設計中的原型模式 本文將從以下幾點 原型模式 概述 結構圖 淺複製深複製 總結 用原型例項指定建立物件的種類,並且通過拷貝這些原型建立新的物件。允許乙個物件再建立另外...
設計模式 原型模式
原型模式 用原型例項指定建立物件的種類,並且通過拷貝這些原型建立新的物件。1 假設我們現有乙個物件,但是它的型別需要執行期確定,我們不知道它的動態型別是什麼,現在我們想建立它的副本。顯然通過建構函式建立是很麻煩的,這時候我們可以使用原型模式中的clone函式直接得到該物件的副本。2 有些時候我們想要...