摘要: 1. 消息队列 # 以后我们会直接使用别人封装好的消息队列 实现各种数据传输 from multiprocessing import Queue q = Queue(5) q.put(111) q.put(222) q.put(333) q.put(444) q.put(555) q.put(666 阅读全文
posted @ 2022-04-20 18:30 thrombus 阅读(39) 评论(0) 推荐(0)