python停止线程_如何终止一个多线程python程序?

本文探讨了如何在Python多线程程序中捕获并响应Ctrl+C中断,分享了一个示例代码,并解释了为何不使用join()可能引发的错误。重点在于解决运行时异常,确保程序在用户中断时优雅退出。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

如何使多线程python程序响应Ctrl+C键事件?

代码如下:import threading

current = 0

class MyThread(threading.Thread):

def __init__(self, total):

threading.Thread.__init__(self)

self.total = total

def stop(self):

self._Thread__stop()

def run(self):

global current

while current

lock = threading.Lock()

lock.acquire()

current+=1

lock.release()

print current

if __name__=='__main__':

threads = []

thread_count = 10

total = 10000

for i in range(0, thread_count):

t = MyThread(total)

t.setDaemon(True)

threads.append(t)

for i in range(0, thread_count):

threads[i].start()

我试图删除所有线程上的join(),但它仍然不起作用。是否因为每个线程的run()过程中的锁段?

上面的代码应该可以工作,但是当当前变量在5,000-6,000范围内并且通过如下错误时它总是中断Exception in thread Thread-4 (most likely raised during interpreter shutdown):

Traceback (most recent call last):

File "/usr/lib/python2.5/threading.py", line 486, in __bootstrap_inner

File "test.py", line 20, in run

: unsupported operand type(s) for +=: 'NoneType' and 'int'

Exception in thread Thread-2 (most likely raised during interpreter shutdown):

Traceback (most recent call last):

File "/usr/lib/python2.5/threading.py", line 486, in __bootstrap_inner

File "test.py", line 22, in run

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值