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

python threading queue

时间:2014-07-22 00:20:34      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   art   for   re   

 

import queue,threading
 
l=threading.Lock()

class MyThread(threading.Thread):
    def __init__(self):
        threading.Thread.__init__(self)
        global que
        self.queue = que
    def run(self):
        while True:
            if self.queue.empty():
                break
            item = self.queue.get()
            if l.acquire(1):
                print( self.name,item)
                l.release()
            self.queue.task_done()
        return
que = queue.Queue()
for x in range(200):
    que.put(x)
for x in range(3):
    t=MyThread()
    t.start()
que.join()

python threading queue,布布扣,bubuko.com

python threading queue

标签:style   blog   color   art   for   re   

原文地址:http://www.cnblogs.com/qingda/p/3858419.html

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