首页 > 编程语言 > 详细

python 生产者消费者模型

时间:2017-03-02 23:33:05      阅读:208      评论:0      收藏:0      [点我收藏+]
 1 import queue
 2 import threading
 3 
 4 q = queue.Queue(10)
 5 def product(i):
 6     print(put:+ str(i))
 7     q.put(i)
 8 
 9 def customer(i):
10     msg = q.get()
11     print(msg)
12 
13 for i in range(12):
14     t = threading.Thread(target=product,args=(i,))
15     t.start()
16 
17 for i in range(10):
18     t = threading.Thread(target=customer,args=(i,))
19     t.start()

 

python 生产者消费者模型

原文:http://www.cnblogs.com/Erick-L/p/6492833.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!