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

如何使多线程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()过程中的锁段吗?

编辑:上面的代码应该可以工作,但当当前变量在5000-6000范围内时,它总是中断,并排除如下错误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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值