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

【Python】python 生产/消费模型

时间:2019-07-08 15:25:08      阅读:106      评论:0      收藏:0      [点我收藏+]

标签:range   python   --   queue   target   生产   pytho   thread   模型   

import queue
import threading
import time


def produce(q: queue.Queue):
    thread_name = threading.current_thread().getName()
    for i in range(10):
        print("生产者[%s]--- %d" % (thread_name, i))
        q.put(i, block=True)
        time.sleep(1)


def consume(q: queue.Queue):
    thread_name = threading.current_thread().getName()
    while True:
        print("消费者[%s]--- %d" % (thread_name, q.get(block=True)))
        time.sleep(2)


if __name__ == '__main__':
    q = queue.Queue(3)

    p = threading.Thread(target=produce, args=(q,), name="worker-p")
    c = threading.Thread(target=consume, args=(q,), name="worker-c")

    p.start()
    c.start()
    p.join()
    c.join()

【Python】python 生产/消费模型

标签:range   python   --   queue   target   生产   pytho   thread   模型   

原文地址:https://www.cnblogs.com/jzsg/p/11151295.html

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