python单例模式继承_Python单例模式的两种实现方法

这篇文章主要介绍了Python单例模式的相关资料,这里提供了两种实现方法,及注意事项,需要的朋友可以参考下

方法一

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

也应该加上线程安全

附:性能没有方法一高

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

以上就是Python单例模式的实例详解

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值