最簡單的Python singleton模式實現

2021-04-25 02:19:51 字數 1418 閱讀 5246

最簡單的python singleton模式實現

-- 用 decorator 實現 singleton 模式

剛開始學 python 時,曾考慮過像 c++ 那樣來實現 singleton 模式,但後來發現 c++ 是 c++,python 是 python,不能簡單進行模仿。

python 中常見的方法是借助 global 變數,或者 class 變數來實現單件。下面介紹用 decorator 來實現:

##----------------------- code begin  -----------------------

# -*- coding: utf-8 -*-

def singleton(cls):

"""define a class with a singleton instance."""

instances = {}

def getinstance(*args, **kwds):

return instances.setdefault(cls, cls(*args, **kwds))

return getinstance

#@singleton ##1 未來版python支援class decorator時可以這樣用

class foo(object):

def __init__(self, attr=1):

self.attr = attr

foo = singleton( foo ) ##2 2.5及之前版不支援class decorator時可以這樣用

if __name__ == "__main__":

ins1 = foo(2) # 等效於: ins1 = singleton(foo)(2)

print "foo(2) -> id(ins)=%d, ins.attr=%d, %s" % (id(ins1), ins1.attr, ('error', 'ok')[ins1.attr == 2])

ins2 = foo(3)

print "foo(3) -> id(ins)=%d, ins.attr=%d, %s" % (id(ins2), ins2.attr, ('error', 'ok')[ins2.attr == 2])

ins2.attr = 5

print "ins.attr=5 -> ins.attr=%d, %s" % (ins2.attr, ('error', 'ok')[ins2.attr == 5])

##------------------------ code end  ------------------------

輸出:foo(2) -> id(ins)=19295376, ins.attr=2, ok

foo(3) -> id(ins)=19295376, ins.attr=2, ok

ins.attr=5 -> ins.attr=5, ok

最簡單的加密

最簡單的加密 package com.util 類 介面的目的 作用 功能 繼承於何種父類,實現的介面 實現的演算法 使用方法 示例程式.version v1.0 2012 3 22 author xiahui public class encrypt system.out.print 加密 s n...

最簡單的makefile

hello.c的內容如下 include int main makefile 的內容如下 hello.exe hello.o gcc o hello.exe hello.o hello.o hello.c gcc c hello.c clean rm hello.o hello.exe window...

最簡單的幸福

最簡單的幸福 簡單樸實的生活中傾以淡然的喜怒哀樂便是爸媽的愛情,因為不懂什麼是愛情,所以從來都不知道要怎樣相信愛情,對於爸媽的愛情,我想我更多是把它理所應當的定義為親情,世間最為割捨不下的牽絆。爸媽的青春不是恣意飛揚的青春,沒有絢麗的色彩,沒有張揚的叛逆。url 公升降機 url 今天的我問起老媽當...