首页 >后端开发 >Python教程 >如何优雅且强制地终止 Python 中正在运行的线程?

如何优雅且强制地终止 Python 中正在运行的线程?

Linda Hamilton
Linda Hamilton原创
2024-12-25 15:32:24859浏览

How Can I Gracefully and Forcefully Terminate a Running Thread in Python?

终止正在运行的线程的方法

背景

虽然通常最好请求线程正常退出,但在某些情况下需要突然终止。本文探讨了终止线程的方法,即使它们可能不是为此设计的。

优雅终止

建议的方法是使用线程定期检查以确定是否应该退出的停止标志。这允许线程在结束之前释放资源并执行清理。

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中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn