Python 如何强制中止线程

发布网友 发布时间:2022-04-23 08:32

我来回答

1个回答

热心网友 时间:2022-04-18 09:41

Python用sleep停止一个线程的运行,而不影响主线程的运行,案例代码如下:

from threading import *import time class MyThread(Thread): def run (self): self.ifdo = True; while self.ifdo: print 'I am running...' time.sleep(2) def stop (self): print 'I am stopping it...' self.ifdo = False; tr = MyThread()tr.setDaemon(True)tr.start()print 'I will stop it...'time.sleep(5)tr.stop()tr.join()

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com