码迷,mamicode.com
首页 > 编程语言 > 详细

飘逸的python - 单例模式乱弹

时间:2017-08-01 14:36:12      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:dig   button   state   article   super   __call__   let   import   tin   

方法一:装饰器

利用“装饰器只会执行一次”这个特点

 1 def singleton(cls):
 2     instances = []# 为什么这里不直接为None,因为内部函数没法访问外部函数的非容器变量
 3     def getinstance(*args, **kwargs):
 4         if not instances:
 5             instances.append(cls(*args, **kwargs))
 6         return instances[0]
 7     return getinstance
 8 
 9 @singleton
10 class Foo:
11     a = 1
12 
13 f1 = Foo()
14 f2 = Foo()
15 print id(f1), id(f2)

方法二:基类

利用“类变量对所有对象唯一”,即cls._instance

1 class Singleton(object):
2     def __new__(cls, *args, **kwargs):
3         if not hasattr(cls, _instance):
4             cls._instance = object.__new__(cls, *args, **kwargs)
5         return cls._instance
6 
7 class Foo(Singleton):
8     a = 1

方法三:metaclass

利用“类变量对所有对象唯一”,即cls._instance

1 class Singleton(type):
2     def __call__(cls, *args, **kwargs):
3         if not hasattr(cls, _instance):
4             cls._instance = super(Singleton, cls).__call__(*args, **kwargs)
5         return cls._instance
6 
7 class Foo():
8     __metaclass__ = Singleton

方法四:Borg模式

利用“类变量对所有对象唯一”,即__share_state

1 class Foo:
2    __share_state = {}
3    def __init__(self):
4        self.__dict__ = self.__share_state

方法五:利用import

利用“模块只会被import一次”

1 #在文件mysingleton中
2 class Foo(object):
3      pass
4 
5 f = Foo()

然后在其它模块,from mysingleton import f 
直接拿f当作单例的对象来用

 
 转自:http://blog.csdn.net/handsomekang/article/details/46672047

飘逸的python - 单例模式乱弹

标签:dig   button   state   article   super   __call__   let   import   tin   

原文地址:http://www.cnblogs.com/lpxblog/p/7267960.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!