转自:http://huaxia524151.iteye.com/blog/1345156
方法一
import threading
class Singleton(object):
__instance = None
__lock = threading.Lock() # used to synchronize code
def __init__(self):
"disable the __init__ method"
@staticmethod
def getInstance():
if not Singleton.__instance:
Singleton.__lock.acquire()
if not Singleton.__instance:
Singleton.__instance = object.__new__(Singleton)
object.__init__(Singleton.__instance)
Singleton.__lock.release()
return Singleton.__instance
1.禁用__init__方法,不能直接创建对象。
2.__instance,单例对象私有化。
3.@staticmethod,静态方法,通过类名直接调用。
4.__lock,代码锁。
5.继承object类,通过调用object的__new__方法创建单例对象,然后调用object的__init__方法完整初始化。
6.双重检查加锁,既可实现线程安全,又使性能不受很大影响。
方法二:使用decorator
#encoding=utf-8
def singleton(cls):
instances = {}
def getInstance():
if cls not in instances:
instances[cls] = cls()
return instances[cls]
return getInstance
@singleton
class SingletonClass:
pass
if __name__ == '__main__':
s = SingletonClass()
s2 = SingletonClass()
print s
print s2
另相似的一篇转自:http://hi.baidu.com/tianfeng1015/blog/item/f0373dd0fbb8bbcb50da4bca.html
我们可以使用 __new__ 这个特殊方法。该方法可以创建一个其所在类的子类的对象。更可喜的是,我们的内置 object 基类实现了 __new__ 方法,所以我们只需让 Sing 类继承 object 类,就可以利用 object 的 __new__ 方法来创建 Sing 对象了。
class Sing(object):
def __init__():
"disable the __init__ method"
__inst = None # make it so-called private
@staticmethod
def getInst():
if not Sing.__inst:
Sing.__inst = object.__new__(Sing)
return Sing.__inst
现在我们只能通过 Sing.getInst() 来创建 Sing 对象了。而且我们也让类属性 __inst 保持了私有(虽然在 Python 中还是有办法访问)。那么,这是否意味着基本没有问题了?当然不是!我们还应该解决一个最关键的多线程问题。
同时,我们应该还注意到,由于我们禁用了 __init__ 方法(显式定义了它),我们就应该显式的调用其基类的 __init__ 方法(或许这里的 object 类对于我们无关痛痒),以作完整的初始化。当然,这个显式的调用也应该移到 getInst() 中去了。
import threading
class Sing(object):
def __init__():
"disable the __init__ method"
__inst = None # make it so-called private
__lock = threading.Lock() # used to synchronize code
@staticmethod
def getInst():
Sing.__lock.acquire()
if not Sing.__inst:
Sing.__inst = object.__new__(Sing)
object.__init__(Sing.__inst)
Sing.__lock.release()
return Sing.__inst
上面的代码中,Sing.__lock.acquire() 和 Sing.__lock.release() 之间的是同步区域,它保证了对象创建的唯一性。同时,object 的 __init__ 方法调用仅仅置于 if 块中,因为它和 Sing 实例一样仅需初始化一次。好了,现在我们的 Singleton 模式应该是基本完善了。