解决python父线程关闭后子线程不关闭问题
我们都知道,python可以通过threadingmodule来创建新的线程,然而在创建线程的线程(父线程)关闭之后,相应的子线程可能却没有关闭,这可能是因为代码中没有使用setDaemon(True)函数。
接下来,使用一个例子来说明:
importthreading defprt_hello(): while1: print'hello' if__name__=='__main__': t=threading.Thread(target=prt_hello) t.setDaemon(True) t.start()
我们需要把setDaemon函数放在start函数前面,不然它是不给通过的,并且返回'cannotsetdaemonstatusofactivethread‘
补充知识:Python多线程的退出/停止的一种是实现思路
在使用多线程的过程中,我们知道,python的线程是没有stop/terminate方法的,也就是说它被启动后,你无法再主动去退出它,除非主进程退出了,注意,是主进程,不是线程的父进程.
一个比较合理的方式就是把原因需要放到threading.Thread的target中的线程函数,改写到一个继承类中,下面是一个实现例子
importthreading importtime importos #原本需要用来启动的无线循环的函数 defprint_thread(): pid=os.getpid() counts=0 whileTrue: print(f'threadingpid:{pid}ran:{counts:04d}s') counts+=1 time.sleep(1) #把函数放到改写到类的run方法中,便可以通过调用类方法,实现线程的终止 classStoppableThread(threading.Thread): def__init__(self,daemon=None): super(StoppableThread,self).__init__(daemon=daemon) self.__is_running=True self.daemon=daemon defterminate(self): self.__is_running=False defrun(self): pid=os.getpid() counts=0 whileself.__is_running: print(f'threadingrunning:{pid}ran:{counts:04d}s') counts+=1 time.sleep(1) defcall_thread(): thread=StoppableThread() thread.daemon=True thread.start() pid=os.getpid() counts=0 foriinrange(5): print(f'0callthreadingpid:{pid}ran:{counts:04d}s') counts+=2 time.sleep(2) #主动把线程退出 thread.terminate() if__name__=='__main__': call_thread() print(f'==========call_threadfinish===========') counts=0 foriinrange(5): counts+=1 time.sleep(1) print(f'mainthread:{counts:04d}s')
以上这篇解决python父线程关闭后子线程不关闭问题就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持毛票票。