理解Python多线程中的join()用法

文心一言中的解释

代码例子1

import threading
import time
def foo():
    time.sleep(3)
    print("我创建的线程结束了")
thread1 = threading.Thread(target=foo)
thread1.start()
# thread1.join()
print("主线程结束了")

输出:

主线程结束了
我创建的线程结束了

Process finished with exit code 0

代码例子2

import threading
import time
def foo():
    time.sleep(3)
    print("我创建的线程结束了")
thread1 = threading.Thread(target=foo)
thread1.start()
thread1.join()
print("主线程结束了")

输出:

我创建的线程结束了
主线程结束了

Process finished with exit code 0

解释

print("主线程结束了")是主线程的一个函数,按理来说,我手动创建的线程会sleep3秒,但是print("主线程结束了")不需要运行3秒而是瞬间执行完毕,所以此时会输出

主线程结束了
我创建的线程结束了

如果让主线程等我创建的线程结束再运行,那么控制台就会等待3秒,然后输出我创建的线程结束了,接着再输出主线程结束了

我创建的线程结束了
主线程结束了
posted @ 2024-08-08 13:58  猪猪猪猪侠  阅读(64)  评论(0编辑  收藏  举报