python 强制关闭线程
Posted xionsheng
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 强制关闭线程相关的知识,希望对你有一定的参考价值。
python 强制关闭线程
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)
class TestThread(threading.Thread):
def run(self):
print("线程开始")
while True:
time.sleep(0.1)
print("线程 进行中")
if __name__ == "__main__":
t = TestThread()
t.start() # 开启启动
time.sleep(2) # 等待线程进行2秒时间
stop_thread(t) # 结束线程 调用函数即可
print("线程 结束")
(亲手可测 已用于项目 )
以上是关于python 强制关闭线程的主要内容,如果未能解决你的问题,请参考以下文章