解决python父线程关闭后子线程不关闭问题

作者:吹牛皮冠军获得者 时间:2023-11-28 22:01:56 

我们都知道,python可以通过threading module来创建新的线程,然而在创建线程的线程(父线程)关闭之后,相应的子线程可能却没有关闭,这可能是因为代码中没有使用setDaemon(True)函数。

接下来,使用一个例子来说明:


import threading

def prt_hello() :
 while 1 :
   print 'hello'

if __name__ == '__main__' :
 t = threading.Thread(target=prt_hello)
 t.setDaemon(True)
 t.start()

我们需要把setDaemon函数放在start函数前面,不然它是不给通过的,并且返回'cannot set daemon status of active thread‘

补充知识:Python 多线程的退出/停止的一种是实现思路

在使用多线程的过程中,我们知道,python的线程是没有stop/terminate方法的,也就是说它被启动后,你无法再主动去退出它,除非主进程退出了,注意,是主进程,不是线程的父进程.

一个比较合理的方式就是把原因需要放到threading.Thread的target中的线程函数,改写到一个继承类中,下面是一个实现例子


import threading
import time
import os

# 原本需要用来启动的无线循环的函数
def print_thread():
 pid = os.getpid()
 counts = 0
 while True:
   print(f'threading pid: {pid} ran: {counts:04d} s')
   counts += 1
   time.sleep(1)

# 把函数放到改写到类的run方法中,便可以通过调用类方法,实现线程的终止
class StoppableThread(threading.Thread):

def __init__(self, daemon=None):
   super(StoppableThread, self).__init__(daemon=daemon)
   self.__is_running = True
   self.daemon = daemon

def terminate(self):
   self.__is_running = False

def run(self):
   pid = os.getpid()
   counts = 0
   while self.__is_running:
     print(f'threading running: {pid} ran: {counts:04d} s')
     counts += 1
     time.sleep(1)

def call_thread():
 thread = StoppableThread()
 thread.daemon = True
 thread.start()

pid = os.getpid()
 counts = 0
 for i in range(5):
   print(f'0 call threading pid: {pid} ran: {counts:04d} s')
   counts += 2
   time.sleep(2)
 # 主动把线程退出
 thread.terminate()

if __name__ == '__main__':
 call_thread()
 print(f'==========call_thread finish===========')
 counts = 0
 for i in range(5):
   counts += 1
   time.sleep(1)
   print(f'main thread:{counts:04d} s')

来源:https://blog.csdn.net/elegance_zf/article/details/49874959

标签:python,父线程,子线程
0
投稿

猜你喜欢

  • javascript自执行函数之伪命名空间封装法

    2023-08-12 20:30:09
  • Python内置函数property()如何使用

    2022-12-07 07:04:28
  • python-地图可视化组件folium的操作

    2023-10-28 14:48:31
  • 使用PyQt的QLabel组件实现选定目标框功能的方法示例

    2022-01-08 22:43:21
  • Python动态可视化模块Pynimate初体验

    2021-03-22 16:35:09
  • Python读取pdf表格写入excel的方法

    2023-08-25 12:33:18
  • JavaScript 中获取数组最后一个元素方法汇总

    2024-06-07 15:25:25
  • oracle下一条SQL语句的优化过程(比较详细)

    2010-04-22 16:58:00
  • Anaconda入门使用总结

    2023-02-06 20:11:18
  • MySQL GRANT用户授权的实现

    2024-01-19 16:56:12
  • python中使用smtplib和email模块发送邮件实例

    2022-09-16 05:37:23
  • python 实现堆排序算法代码

    2023-01-12 21:21:26
  • jupyter notebook如何使用matlab

    2022-11-08 18:17:51
  • Python中pygame的mouse鼠标事件用法实例

    2021-02-09 12:21:41
  • Python Request爬取seo.chinaz.com百度权重网站的查询结果过程解析

    2022-12-01 07:16:59
  • HTML5 的五个激动人心的特性

    2009-01-02 17:36:00
  • 文字适度阅读的宽度或者字数

    2007-10-26 07:31:00
  • mysql 表维护与改造代码分享

    2024-01-17 23:04:05
  • Python基础必备之语法结构详解

    2023-12-07 05:29:06
  • SqlServer编写数据库表的操作方式(建库、建表、修改语句)

    2024-01-15 11:38:57
  • asp之家 网络编程 m.aspxhome.com