对python 多线程中的守护线程与join的用法详解
Python  /  管理员 发布于 8年前   176
多线程:在同一个时间做多件事
守护线程:如果在程序中将子线程设置为守护线程,则该子线程会在主线程结束时自动退出,设置方式为thread.setDaemon(True),要在thread.start()之前设置,默认是false的,也就是主线程结束时,子线程依然在执行。
thread.join():在子线程完成运行之前,该子线程的父线程(一般就是主线程)将一直存在,也就是被阻塞
实例:
#!/usr/bin/python# encoding: utf-8 import threadingfrom time import ctime,sleep def func1(): count=0 while(True): sleep(1) print 'fun1 ',count count = count+1 def func2(): count=0 while(True): sleep(2) print 'fun2 ',count count = count+1 threads = []t1 = threading.Thread(target=func1)threads.append(t1)t2 = threading.Thread(target=func2)threads.append(t2) if __name__ == '__main__': for t in threads: t.setDaemon(True) t.start()
上面这段程序执行后,将不会有任何输出,因为子线程还没来得及执行,主线程就退出了,子线程为守护线程,所以也就退出了。
修改后的程序:
#!/usr/bin/python# encoding: utf-8 import threadingfrom time import ctime,sleep def func1(): count=0 while(True): sleep(1) print 'fun1 '+str(count) count = count+1 def func2(): count=0 while(True): sleep(2) print 'fun2 '+str(count) count = count+1 threads = []t1 = threading.Thread(target=func1)threads.append(t1)t2 = threading.Thread(target=func2)threads.append(t2) if __name__ == '__main__': for t in threads: t.setDaemon(True) t.start() t.join()
可以按照预期执行了,主要join的调用要加在循环外,不然程序只会执行第一个线程。
print 的部分改成+,是为了避免输出结果中出现类似fun1 fun2 49 这种情况,这是由于程序执行太快,用‘,'间隔相当于执行了两次print ,在这期间另一个线程也执行了print,所以导致了重叠。
以上这篇对python 多线程中的守护线程与join的用法详解就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
test1 在
opencode + Oh-my-openagent,我的第一个免费的ai编程智能体管家:Sisyphus中评论 test..122 在
学历:一种延缓就业设计,生活需求下的权衡之选中评论 工作几年后,报名考研了,到现在还没认真学习备考,迷茫中。作为一名北漂互联网打工人..Zita 在
Google AI Studio升级全栈 vibe coding体验,可直接构建带登录和数据库的应用中评论 111222..123 在
Clash for Windows作者删库跑路了,github已404中评论 按理说只要你在国内,所有的流量进出都在监控范围内,不管你怎么隐藏也没用,想搞你分..原梓番博客 在
在Laravel框架中使用模型Model分表最简单的方法中评论 好久好久都没看友情链接申请了,今天刚看,已经添加。..
Copyright·© 2019 侯体宗版权所有·
粤ICP备20027696号
