Pythonpython 生产/消费模型

Posted jzsg

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Pythonpython 生产/消费模型相关的知识,希望对你有一定的参考价值。

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()

以上是关于Pythonpython 生产/消费模型的主要内容,如果未能解决你的问题,请参考以下文章

生产者消费者模型详解

生产者消费者模型详解

生产者消费者模型详解

Linux生产者消费者模型

生产者消费者模型

多线程生产者消费者模型