join有一个timeout参数:(推荐学习:Python视频教程)
当设置守护线程时,含义是主线程对于子线程等待timeout的时间将会杀死该子线程,最后退出程序。所以说,如果有10个子线程,全部的等待时间就是每个timeout的累加和。简单的来说,就是给每个子线程一个timeout的时间,让他去执行,时间一到,不管任务有没有完成,直接杀死。
没有设置守护线程时,主线程将会等待timeout的累加和这样的一段时间,时间一到,主线程结束,但是并没有杀死子线程,子线程依然可以继续执行,直到子线程全部结束,程序退出。
join的作用
import threading
import time
def run():
time.sleep(2)
print('当前线程的名字是: ', threading.current_thread().name)
time.sleep(2)
if __name__ == '__main__':
start_time = time.time()
print('这是主线程:', threading.current_thread().name)
thread_pst = []
for i in range(5):
t = threading.Thread(target=run)
thread_pst.append(t)
for t in thread_pst:
t.setDaemon(True)
t.start()
for t in thread_pst:
t.join()
print('主线程结束了!' , threading.current_thread().name)
print('一共用时:', time.time()-start_time)
更多Python相关技术文章,请访问Python教程栏目进行学习!
以上就是小编分享的关于python的线程join怎么用的详细内容希望对大家有所帮助,更多有关python教程请关注环球青藤其它相关文章!