您好,登錄后才能下訂單哦!
本文實例講述了python單例模式原理與創建方法。分享給大家供大家參考,具體如下:
1. 單例是什么
舉個常見的單例模式例子,我們日常使用的電腦上都有一個回收站,在整個操作系統中,回收站只能有一個實例,整個系統都使用這個唯一的實例,而且回收站自行提供自己的實例。因此回收站是單例模式的應用。
確保某一個類只有一個實例,而且自行實例化并向整個系統提供這個實例,這個類稱為單例類,單例模式是一種對象創建型模式。
2. 創建單例-保證只有1個對象
# 實例化一個單例 class Singleton(object): __instance = None def __new__(cls, age, name): #如果類數字__instance沒有或者沒有賦值 #那么就創建一個對象,并且賦值為這個對象的引用,保證下次調用這個方法時 #能夠知道之前已經創建過對象了,這樣就保證了只有1個對象 if not cls.__instance: cls.__instance = object.__new__(cls) return cls.__instance a = Singleton(18, "xxx") b = Singleton(8, "xxx") print(id(a)) print(id(b)) a.age = 19 #給a指向的對象添加一個屬性 print(b.age)#獲取b指向的對象的age屬性
運行結果:
4391023224
4391023224
19
3. 創建單例時,只執行1次init方法
# 實例化一個單例 class Singleton(object): __instance = None __first_init = False def __new__(cls, age, name): if not cls.__instance: cls.__instance = object.__new__(cls) return cls.__instance def __init__(self, age, name): if not self.__first_init: self.age = age self.name = name Singleton.__first_init = True a = Singleton(18, "xxx") b = Singleton(8, "xxx") print(id(a)) print(id(b)) print(a.age) print(b.age) a.age = 19 print(b.age)
運行結果:
139953926130600
139953926130600
18
18
19
更多關于Python相關內容可查看本站專題:《Python數據結構與算法教程》、《Python Socket編程技巧總結》、《Python函數使用技巧總結》、《Python字符串操作技巧匯總》及《Python入門與進階經典教程》
希望本文所述對大家Python程序設計有所幫助。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。