单例模式,使用__new__
__new__是构造函数, __init__是初始化方法,先调用了__new__返回了实例,__init__给这个实例初始化绑定一些属性。
class Singleton(object): def __new__(cls, *args, **kw):
if not hasattr(cls, '_instance'):
cls._instance = super(Singleton,cls).__new__(cls, *args, **kw) return cls._instance def __init__(self,name):
if not hasattr(self,'name'): ##注意此行
self.name=name def __str__(self):
return '类的名称:%s 对象的name属性是:%s hash是:%s id是:%s '%(self.__class__.__name__,self.name, self.__hash__, id(self)) x1=Singleton('xxxx')
x2=Singleton('yyyy') print id(x1)
print id(x2) print x1
print x2
观察结果可以发现,x1的name值是xxxx,x2的name的值也是xxxx。
如果去掉第10行,那么x1和x2的name的值都是yyyy。
在某些情况下需要控制某些属性不被重新赋值,就可以加入判断。特别是selenium webdriver的。