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

多线程下的单例模式

时间:2019-01-04 12:24:21      阅读:205      评论:0      收藏:0      [点我收藏+]

标签:col   class   imp   foo   time   return   task   __new__   rlock   

import threading
import time

class Foo:
    _instance = None
    _lock = threading.RLOCK()
    
    def __new__(cls,*args,**kwargs):
        if cls._instance:
            return cls._instance
        with cls._lock:
            if not cls._instance = object.__new__(cls)
        return cls._instance
def task():
    obj=Foo()
    print(obj)
for i in range(10):
    t=threading.Thread(target=task)
    t.start()

 

多线程下的单例模式

标签:col   class   imp   foo   time   return   task   __new__   rlock   

原文地址:https://www.cnblogs.com/zxmbky/p/10218480.html

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