国产成人精品亚洲777人妖,欧美日韩精品一区视频,最新亚洲国产,国产乱码精品一区二区亚洲

您的位置:首頁技術(shù)文章
文章詳情頁

解決python父線程關(guān)閉后子線程不關(guān)閉問題

瀏覽:41日期:2022-07-27 15:02:27

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

接下來,使用一個(gè)例子來說明:

import threadingdef prt_hello() : while 1 : print ’hello’if __name__ == ’__main__’ : t = threading.Thread(target=prt_hello) t.setDaemon(True) t.start()

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

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

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

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

import threadingimport timeimport os # 原本需要用來啟動(dòng)的無線循環(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方法中,便可以通過調(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’)

以上這篇解決python父線程關(guān)閉后子線程不關(guān)閉問題就是小編分享給大家的全部內(nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持好吧啦網(wǎng)。

標(biāo)簽: Python 編程
相關(guān)文章:
主站蜘蛛池模板: 新野县| 瓮安县| 当涂县| 颍上县| 罗定市| 宝清县| 贵港市| 海阳市| 康平县| 永和县| 定南县| 盱眙县| 崇仁县| 巴南区| 吉林市| 石屏县| 凤城市| 沙田区| 余姚市| 新田县| 卢湾区| 长顺县| 通化市| 达尔| 屏边| 阜南县| 安达市| 仙居县| 新干县| 沧州市| 宜川县| 柳州市| 保靖县| 东辽县| 丹巴县| 浑源县| 遂溪县| 历史| 唐河县| 宜君县| 吉安市|