中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python父線程關閉后子線程不關閉怎么辦

發布時間:2020-07-30 14:38:43 來源:億速云 閱讀:245 作者:小豬 欄目:開發技術

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

我們都知道,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')

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

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

平度市| 安福县| 新晃| 治县。| 阳泉市| 称多县| 马山县| 西丰县| 云安县| 高邮市| 盐边县| 大庆市| 牟定县| 瑞昌市| 夹江县| 叶城县| 和龙市| 桂阳县| 泸水县| 且末县| 鄂温| 屯留县| 阿拉善右旗| 上高县| 全南县| 新绛县| 隆尧县| 乐亭县| 石柱| 伽师县| 神农架林区| 威海市| 金坛市| 平罗县| 益阳市| 酉阳| 定安县| 古丈县| 库车县| 潍坊市| 勐海县|