일반적으로 스레드를 정상적으로 종료하도록 요청하는 것이 바람직하지만 갑작스러운 종료가 필요한 상황이 있습니다. . 이 문서에서는 스레드가 스레드를 종료하도록 설계되지 않은 경우에도 스레드를 종료하는 방법을 살펴봅니다.
권장되는 접근 방식은 스레드가 종료해야 하는지 결정하기 위해 주기적으로 확인하는 중지 플래그를 사용하는 것입니다. . 이를 통해 스레드는 종료되기 전에 리소스를 해제하고 정리를 수행할 수 있습니다.
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 중국어 웹사이트의 기타 관련 기사를 참조하세요!