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

python 生产者消费者模型

时间:2017-03-02 23:33:05      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:custom   import   range   port   thread   bsp   threading   class   消费者   

 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 生产者消费者模型

标签:custom   import   range   port   thread   bsp   threading   class   消费者   

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

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