[首页]
[文章]
[教程]
首页
Web开发
Windows开发
编程语言
数据库技术
移动平台
系统服务
微信
设计
布布扣
其他
数据分析
首页
>
编程语言
> 详细
Python单例模式的4种实现方法
时间:
2015-12-15 18:01:48
阅读:
205
评论:
0
收藏:
0
[点我收藏+]
转自:http://ghostfromheaven.iteye.com/blog/1562618
Python代码
#-*- encoding=utf-8 -*-
print
‘----------------------方法1--------------------------‘
#方法1,实现__new__方法
#并在将一个类的实例绑定到类变量_instance上,
#如果cls._instance为None说明该类还没有实例化过,实例化该类,并返回
#如果cls._instance不为None,直接返回cls._instance
class Singleton(object):
def __new__(
cls, *args, **kw):
if
not hasattr(
cls,
‘_instance‘):
orig = super(Singleton,
cls)
cls._instance = orig.__new__(
cls, *args, **kw)
return
cls._instance
class MyClass(Singleton):
a =
1
one = MyClass()
two = MyClass()
two.a =
3
print one.a
#3
#one和two完全相同,可以用id(), ==, is检测
print id(one)
#29097904
print id(two)
#29097904
print one == two
#True
print one
is two
#True
print
‘----------------------方法2--------------------------‘
#方法2,共享属性;所谓单例就是所有引用(实例、对象)拥有相同的状态(属性)和行为(方法)
#同一个类的所有实例天然拥有相同的行为(方法),
#只需要保证同一个类的所有实例具有相同的状态(属性)即可
#所有实例共享属性的最简单最直接的方法就是__dict__属性指向(引用)同一个字典(dict)
#可参看:http://code.activestate.com/recipes/66531/
class Borg(object):
_state = {}
def __new__(
cls, *args, **kw):
ob = super(Borg,
cls).__new__(
cls, *args, **kw)
ob.__dict__ =
cls._state
return ob
class MyClass2(Borg):
a =
1
one = MyClass2()
two = MyClass2()
#one和two是两个不同的对象,id, ==, is对比结果可看出
two.a =
3
print one.a
#3
print id(one)
#28873680
print id(two)
#28873712
print one == two
#False
print one
is two
#False
#但是one和two具有相同的(同一个__dict__属性),见:
print id(one.__dict__)
#30104000
print id(two.__dict__)
#30104000
print
‘----------------------方法3--------------------------‘
#方法3:本质上是方法1的升级(或者说高级)版
#使用__metaclass__(元类)的高级python用法
class Singleton2(type):
def __init__(
cls, name, bases, dict):
super(Singleton2,
cls).__init__(name, bases, dict)
cls._instance =
None
def __call__(
cls, *args, **kw):
if
cls._instance
is
None:
cls._instance = super(Singleton2,
cls).__call__(*args, **kw)
return
cls._instance
class MyClass3(object):
__metaclass__ = Singleton2
one = MyClass3()
two = MyClass3()
two.a =
3
print one.a
#3
print id(one)
#31495472
print id(two)
#31495472
print one == two
#True
print one
is two
#True
print
‘----------------------方法4--------------------------‘
#方法4:也是方法1的升级(高级)版本,
#使用装饰器(decorator),
#这是一种更pythonic,更elegant的方法,
#单例类本身根本不知道自己是单例的,因为他本身(自己的代码)并不是单例的
def singleton(
cls, *args, **kw):
instances = {}
def _singleton():
if
cls
not
in instances:
instances[
cls] =
cls(*args, **kw)
return instances[
cls]
return _singleton
@singleton
class MyClass4(object):
a =
1
def __init__(
self, x=
0):
self.x = x
one = MyClass4()
two = MyClass4()
two.a =
3
print one.a
#3
print id(one)
#29660784
print id(two)
#29660784
print one == two
#True
print one
is two
#True
one.x =
1
print one.x
#1
print two.x
#1
Python单例模式的4种实现方法
原文:http://www.cnblogs.com/ymy124/p/5048805.html
踩
(
0
)
赞
(
0
)
举报
评论
一句话评论(
0
)
登录后才能评论!
分享档案
更多>
2021年09月23日 (328)
2021年09月24日 (313)
2021年09月17日 (191)
2021年09月15日 (369)
2021年09月16日 (411)
2021年09月13日 (439)
2021年09月11日 (398)
2021年09月12日 (393)
2021年09月10日 (160)
2021年09月08日 (222)
最新文章
更多>
2021/09/28 scripts
2022-05-27
vue自定义全局指令v-emoji限制input输入表情和特殊字符
2022-05-27
9.26学习总结
2022-05-27
vim操作
2022-05-27
深入理解计算机基础 第三章
2022-05-27
C++ string 作为形参与引用传递(转)
2022-05-27
python 加解密
2022-05-27
JavaScript-对象数组里根据id获取name,对象可能有children属性
2022-05-27
SQL语句——保持现有内容在后面增加内容
2022-05-27
virsh命令文档
2022-05-27
教程昨日排行
更多>
1.
list.reverse()
2.
Django Admin 管理工具
3.
AppML 案例模型
4.
HTML 标签列表(功能排序)
5.
HTML 颜色名
6.
HTML 语言代码
7.
jQuery 事件
8.
jEasyUI 创建分割按钮
9.
jEasyUI 创建复杂布局
10.
jEasyUI 创建简单窗口
友情链接
汇智网
PHP教程
插件网
关于我们
-
联系我们
-
留言反馈
- 联系我们:wmxa8@hotmail.com
© 2014
bubuko.com
版权所有
打开技术之扣,分享程序人生!