python多线程关闭_Python在多线程上关闭一个线程

为了简化我所拥有的情况:我正在尝试终止线程,当它仍在

Python 2.7中运行时,我不知道该怎么做.

拿这个简单的代码:

import time

import threading

def thread1():

print "Starting thread 1"

while True:

time.sleep(0.5)

print "Working"

thread1 = threading.Thread(target=thread1, args=())

thread1.start()

time.sleep(2)

print "Killing thread 1"

thread2.stop()

print "Checking if it worked:"

print "Thread is: " + str(thread1.isAlive())

线程1继续“工作”,我试图在主线程中杀死它.有什么想法怎么做?我试过了:

threat1.terminate

threat1.stop

threat1.quit

threat1.end

这一切似乎都指出,没有办法用简单的代码行来真正阻止它.你有什么建议吗?

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值