对python 多线程中的守护线程与join的用法详解
作者:thn_sweety 时间:2021-08-11 10:56:51
多线程:在同一个时间做多件事
守护线程:如果在程序中将子线程设置为守护线程,则该子线程会在主线程结束时自动退出,设置方式为thread.setDaemon(True),要在thread.start()之前设置,默认是false的,也就是主线程结束时,子线程依然在执行。
thread.join():在子线程完成运行之前,该子线程的父线程(一般就是主线程)将一直存在,也就是被阻塞
实例:
#!/usr/bin/python
# encoding: utf-8
import threading
from 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 threading
from 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,所以导致了重叠。
来源:https://blog.csdn.net/thn_sweety/article/details/53539873
标签:python,多线程,守护线程,join
0
投稿
猜你喜欢
python回调函数的使用方法
2023-05-28 02:50:55
一小时学会TensorFlow2之自定义层
2021-12-22 18:00:11
Opencv实现计算两条直线或线段角度方法详解
2023-10-01 22:18:15
asp判断ip及ip段范围的一组函数小记
2008-12-09 18:23:00
python中itertools模块zip_longest函数详解
2023-01-02 09:09:35
Python HTML解析模块HTMLParser用法分析【爬虫工具】
2023-10-04 02:07:09
Oracle数据库3种关闭方式
2008-06-13 16:46:00
Python3安装Pymongo详细步骤
2021-06-09 10:27:20
使用python创建Excel工作簿及工作表过程图解
2021-10-05 03:57:34
通过python改变图片特定区域的颜色详解
2021-09-17 11:01:22
python实现修改固定模式的字符串内容操作示例
2023-05-13 21:44:04
Python heapq使用详解及实例代码
2023-03-07 14:36:56
Python编写memcached启动脚本代码实例
2023-02-13 19:59:51
Python标准库06之子进程 (subprocess包) 详解
2021-05-24 02:00:25
perl的格式化输出及chomp的重要性分析
2022-03-22 11:03:00
[整理版]防止Access数据库被下载的9种方法
2007-08-10 09:31:00
Vue 中使用 typescript的方法详解
2024-05-09 15:10:12
pandas 使用insert插入一列
2023-03-24 23:51:40
解决python Markdown模块乱码的问题
2021-09-15 07:31:36
MySQL查询两个日期之间记录的方法
2024-01-21 19:47:40