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

Python生产者和消费者

时间:2019-02-27 01:33:47      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:def   get   size   消费者   +=   生产   int   thread   port   

# Author:XiangLiang
import threading,time
import queue

q = queue.Queue(maxsize=10)
def Producer(name):
count = 1
while True:
q.put("骨头 %s" %count)
print("生产了骨头",count)
count += 1
time.sleep(0.1)

def Consumer(name):
while True:
print("%s 取到 %s 并且吃了" %(name,q.get()))
time.sleep(1)

p = threading.Thread(target=Producer,args=("ZS",))
c = threading.Thread(target=Consumer,args=("XiaoHe",))
c1 = threading.Thread(target=Consumer,args=("HuZi",))

p.start()
c.start()
c1.start()

Python生产者和消费者

标签:def   get   size   消费者   +=   生产   int   thread   port   

原文地址:https://www.cnblogs.com/sisa/p/10441139.html

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