摘要: """ Queue 实现了多生产者、多消费者队列 """ from multiprocessing import Process, Queue import os, time, random from threading import Thread q = Queue(30) # 写数据进程执行的代 阅读全文
posted @ 2020-06-11 00:04 橘个栗子 阅读(499) 评论(0) 推荐(0) 编辑