python 终止程序代码 多线程_终止多线程python程序

这篇博客探讨了如何使Python多线程程序在接收到Ctrl+C信号时能够正确终止。作者提供了一段代码示例,创建了一个线程类并尝试使用`self._Thread__stop()`方法来停止线程。然而,代码在运行过程中遇到错误,提示在解释器关闭时操作类型不支持。问题可能出在线程的锁机制和资源清理上。
摘要由CSDN通过智能技术生成

如何使多线程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()过程?

编辑:上述代码应该工作ÿ

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值