溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

python父線程關(guān)閉后子線程不關(guān)閉怎么辦

發(fā)布時(shí)間:2020-07-30 14:38:43 來(lái)源:億速云 閱讀:239 作者:小豬 欄目:開(kāi)發(fā)技術(shù)

小編這次要給大家分享的是python父線程關(guān)閉后子線程不關(guān)閉怎么辦,文章內(nèi)容豐富,感興趣的小伙伴可以來(lái)了解一下,希望大家閱讀完這篇文章之后能夠有所收獲。

我們都知道,python可以通過(guò)threading module來(lái)創(chuàng)建新的線程,然而在創(chuàng)建線程的線程(父線程)關(guān)閉之后,相應(yīng)的子線程可能卻沒(méi)有關(guān)閉,這可能是因?yàn)榇a中沒(méi)有使用setDaemon(True)函數(shù)。

接下來(lái),使用一個(gè)例子來(lái)說(shuō)明:

import threading

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

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

我們需要把setDaemon函數(shù)放在start函數(shù)前面,不然它是不給通過(guò)的,并且返回'cannot set daemon status of active thread‘

補(bǔ)充知識(shí):Python 多線程的退出/停止的一種是實(shí)現(xiàn)思路

在使用多線程的過(guò)程中,我們知道,python的線程是沒(méi)有stop/terminate方法的,也就是說(shuō)它被啟動(dòng)后,你無(wú)法再主動(dòng)去退出它,除非主進(jìn)程退出了,注意,是主進(jìn)程,不是線程的父進(jìn)程.

一個(gè)比較合理的方式就是把原因需要放到threading.Thread的target中的線程函數(shù),改寫到一個(gè)繼承類中,下面是一個(gè)實(shí)現(xiàn)例子

import threading
import time
import os
 
# 原本需要用來(lái)啟動(dòng)的無(wú)線循環(huán)的函數(shù)
def print_thread():
  pid = os.getpid()
  counts = 0
  while True:
    print(f'threading pid: {pid} ran: {counts:04d} s')
    counts += 1
    time.sleep(1)
 
# 把函數(shù)放到改寫到類的run方法中,便可以通過(guò)調(diào)用類方法,實(shí)現(xiàn)線程的終止
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)
  # 主動(dòng)把線程退出
  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')

看完這篇關(guān)于python父線程關(guān)閉后子線程不關(guān)閉怎么辦的文章,如果覺(jué)得文章內(nèi)容寫得不錯(cuò)的話,可以把它分享出去給更多人看到。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI