From 66148187d04110d85d21c1dbc2743a63cd12285c Mon Sep 17 00:00:00 2001 From: Aaron Date: Thu, 18 Sep 2025 15:54:29 +0800 Subject: [PATCH] =?UTF-8?q?09-18-=E5=91=A8=E5=9B=9B=5F15-54-29?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 03.网络编程与并发/03.多进程.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/03.网络编程与并发/03.多进程.md b/03.网络编程与并发/03.多进程.md index 89b2702..0d806c6 100644 --- a/03.网络编程与并发/03.多进程.md +++ b/03.网络编程与并发/03.多进程.md @@ -211,7 +211,7 @@ if __name__ == '__main__': print('主程序') ``` -使用join方法 +使用join方法,此方法会等待子进程结束 ```python import time @@ -583,7 +583,7 @@ if __name__ == '__main__': p.start() ``` -用说来保护票 +用锁来保护票 ```python #文件db的内容为:{"count":1}