摘要: #进程间通信 IPC(Inter-Process Communication) 1、进程之间数据是隔离的,代码示例如下: from multiprocessing import Process def task(): global n n = 100 print("子进程中:", n) if __n 阅读全文
posted @ 2021-07-21 18:50 zhutianyu 阅读(209) 评论(0) 推荐(0)