Python 强制停止多线程运行
2019-04-20 08:52:56来源:博客园 阅读 ()
强制停止多线程运行
by:授客 QQ:1033553122
#!/usr/bin/env python
# -*- coding:utf-8 -*-
__author__ = 'shouke'
import threading
import time
import inspect
import ctypes
def _async_raise(tid, exctype):
"""raises the exception, performs cleanup if needed"""
tid = ctypes.c_long(tid)
if not inspect.isclass(exctype):
exctype = type(exctype)
res = ctypes.pythonapi.PyThreadState_SetAsyncExc(tid, ctypes.py_object(exctype))
if res == 0:
raise ValueError("invalid thread id")
elif res != 1:
# """if it returns a number greater than one, you're in trouble,
# and you should call it again with exc=NULL to revert the effect"""
ctypes.pythonapi.PyThreadState_SetAsyncExc(tid, None)
raise SystemError("PyThreadState_SetAsyncExc failed")
def stop_thread(thread):
_async_raise(thread.ident, SystemExit)
def test():
try:
while True:
print('-------')
time.sleep(0.5)
except Exception as e:
print('Exception:%s' % e)
finally:
print('stop running test function')
if __name__ == "__main__":
t = threading.Thread(target=test)
t.start()
time.sleep(5)
stop_thread(t)
print("main thread running")
print("main thread running")
print("main thread running")
print("main thread running")
运行结果:
结论:
按上述方法是可以停止多线程的,但是需要注意的地方是,线程退出前,会执行try...finally中的代码,如果代码包含了多层try...finally,每一层的finally中的语句都会被执行,如下:
修改代码如下
def test():
try:
try:
while True:
print('-------')
time.sleep(0.5)
except Exception as e:
print('Exception:%s' % e)
finally:
print('stop running test function')
print('outer try')
except Exception:
pass
finally:
print('outer try finally')
再次运行,结果
原文链接:https://www.cnblogs.com/shouke/p/10740806.html
如有疑问请与原作者联系
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- python3基础之“术语表(2)” 2019-08-13
- python3 之 字符串编码小结(Unicode、utf-8、gbk、gb2312等 2019-08-13
- Python3安装impala 2019-08-13
- 小白如何入门 Python 爬虫? 2019-08-13
- python_字符串方法 2019-08-13
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash