虽然通常最好请求线程正常退出,但在某些情况下需要突然终止。本文探讨了终止线程的方法,即使它们可能不是为此设计的。
建议的方法是使用线程定期检查以确定是否应该退出的停止标志。这允许线程在结束之前释放资源并执行清理。
import threading class StoppableThread(threading.Thread): def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self._stop_event = threading.Event() def stop(self): self._stop_event.set() def stopped(self): return self._stop_event.is_set()
在极少数情况下,可能需要强制终止线程。这可以使用 _async_raise 函数来实现:
def _async_raise(tid, exctype): if not inspect.isclass(exctype): raise TypeError("Only types can be raised (not instances)") res = ctypes.pythonapi.PyThreadState_SetAsyncExc(ctypes.c_long(tid), ctypes.py_object(exctype)) if res == 0: raise ValueError("invalid thread id") elif res != 1: ctypes.pythonapi.PyThreadState_SetAsyncExc(ctypes.c_long(tid), None) raise SystemError("PyThreadState_SetAsyncExc failed") class ThreadWithExc(threading.Thread): def raise_exc(self, exctype): _async_raise(self._get_my_tid(), exctype)
请注意,强制终止可能会使资源处于不稳定状态。仅当无法正常终止或线程主动阻塞程序时才使用此选项。
以上是如何优雅且强制地终止 Python 中正在运行的线程?的详细内容。更多信息请关注PHP中文网其他相关文章!