守护线程
守护线程
import time
from threading import Thread
def son():
while True:
print(‘in son‘)
time.sleep(1)
def son2():
for i in range(3):
print(‘in son2 ****‘)
time.sleep(1)
# flag a 0s
t = Thread(target=son)
t.daemon = True
t.start()
Thread(target=son2).start()
# flag b
守护进程 会随着主进程的代码结束而结束
如果主进程代码结束之后还有其他子进程在运行,守护进程不守护
守护线程 随着主线程的结束而结束
如果主线程代码结束之后还有其他子线程在运行,守护线程也守护
守护线程
原文地址:https://www.cnblogs.com/wyh0717/p/13379635.html