python小程序----queue模块的简单使用

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python小程序----queue模块的简单使用相关的知识,希望对你有一定的参考价值。

def productor (myid,dataqueue,num_thread_per_productor):
	for i in range(num_thread_per_productor):
		dataqueue.put(‘生产者ID:%s ==> 第%s个‘%(myid,i))

def consumer (myid,dataqueue,stdoutlock):
	while True:
		try:
			data=dataqueue.get(block=False)
		except queue.Empty:
			pass
		else:
			with stdoutlock:
				print (‘消费者%s get %s‘%(myid,data))

if __name__==‘__main__‘:
	import queue,threading
	numproductors=5
	num_thread_per_productor=5
	numconsumers=3
	dataque=queue.Queue()
	safeprint=threading.Lock()
	waitfor=[]
	for i in range(numproductors):
		productor_thread=threading.Thread(target=productor,args=(i,dataque,num_thread_per_productor))
		productor_thread.start()
		waitfor.append(productor_thread)
	for i in range(numconsumers):
		consumer_thread=threading.Thread(target=consumer,args=(i,dataque,safeprint))
		consumer_thread.daemon=True    
		consumer_thread.start()
	for wait_thread in waitfor:
		wait_thread.join()
	print (" ----------end-----------")	


本文出自 “90后” 博客,请务必保留此出处http://lzs66.blog.51cto.com/9607068/1854735

以上是关于python小程序----queue模块的简单使用的主要内容,如果未能解决你的问题,请参考以下文章

python - 常用模块 - queue

后台程序处理 python threading - queue 模块使用

Python队列queue模块

Python之queue模块

python threading模块使用 以及python多线程操作的实践(使用Queue队列模块)

python多进程multiprocessing模块中Queue的妙用