gpt4 book ai didi

python - 当对实例的所有引用都被销毁(Python)时,在类实例中启动的线程会发生什么?

转载 作者:行者123 更新时间:2023-12-03 12:58:40 29 4
gpt4 key购买 nike

问题在标题中。

代码示例:

class A:
def start_thread(self):
t1 = threading.Thread(target=something)
t1.start()

a = A()
a.start_thread()
a = A()

那么,我们开始的线程会发生什么?

最佳答案

threading模块本身保持对每个事件的引用 Thread对象,因此即使引用消失,正在运行的线程也将继续运行。

关于python - 当对实例的所有引用都被销毁(Python)时,在类实例中启动的线程会发生什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60744652/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com