摘要: 消息队列 from multiprocessing import Queue q = Queue(5) # 产生队列并限制队列长度 q.put(111) # 放入数据 q.put(222) q.put(333) print(q.full()) # 判断队列是否满了 q.put(444) q.put( 阅读全文
posted @ 2022-04-20 23:54 Oliver-Chance 阅读(85) 评论(0) 推荐(0) 编辑