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

Python求索之路8——生产者&消费者

时间:2016-03-31 12:55:13      阅读:211      评论:0      收藏:0      [点我收藏+]

标签:

多线程中的生产者和消费者模型:

生产者和消费者可以用多线程实现,它们通过Queue队列进行通信。

import time,random
import Queue,threading

q = Queue.Queue()
def Producer(name):
  count = 0
  while count <20:
    time.sleep(random.randrange(3))#随机时间间隔
    q.put(count)
    print(Producer %s has produced %s baozi.. %(name, count))
    count +=1
def Consumer(name):
  count = 0
  while count <20:
    time.sleep(random.randrange(4))
    if not q.empty():
        data = q.get()
        print(data)
        print(\033[32;1mConsumer %s has eat %s baozi...\033[0m %(name, data))
    else:
        print("-----no baozi anymore----")
    count +=1
p1 = threading.Thread(target=Producer, args=(A,))
c1 = threading.Thread(target=Consumer, args=(B,))
p1.start()
c1.start()

 

Python求索之路8——生产者&消费者

标签:

原文地址:http://www.cnblogs.com/ahaii/p/5340513.html

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