码迷,mamicode.com
首页 > 其他好文 > 详细

单例模式

时间:2018-01-09 13:38:06      阅读:107      评论:0      收藏:0      [点我收藏+]

标签:time   span   def   post   基于   read   pre   attr   method   

一. 单例模式四种方式

1. 文件导入

2. 基于类

2.1 无法支持多线程

技术分享图片
import threading

class Singleton(object): 
    def __init__(self):
        pass
    @classmethod 
    def instance(cls, *args, **kwargs): 
        if not hasattr(Singleton, "_instance"): 
        Singleton._instance = Singleton(*args, **kwargs) 
    return Singleton._instance
    
obj = Singleton.instance()
View Code

2.2 支持多线程

技术分享图片
import time
import threading
class Singleton(object):
    _instance_lock = threading.Lock()

    def __init__(self):
        time.sleep(1)

    @classmethod
    def instance(cls, *args, **kwargs):
        if not hasattr(Singleton, "_instance"):
            with Singleton._instance_lock:
                if not hasattr(Singleton, "_instance"):
                    Singleton._instance = Singleton(*args, **kwargs)
        return Singleton._instance


# 第一次调用
def task(arg):
    obj = Singleton.instance()
    print(obj)
for i in range(10):
    t = threading.Thread(target=task,args=[i,])
    t.start()


# 第二次调用    
time.sleep(20)
obj = Singleton.instance()
View Code

 

单例模式

标签:time   span   def   post   基于   read   pre   attr   method   

原文地址:https://www.cnblogs.com/oyoui/p/8250873.html

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