실행 중인 스레드를 갑자기 종료할 수 있나요?
일반적으로 좋은 접근 방식은 아니지만 Python에서 실행 중인 스레드를 갑자기 종료하는 것이 가능합니다. . 그러나 이 접근 방식은 보편적으로 적용 가능하지 않습니다.
우아한 종료에 대한 고려 사항
다음 시나리오를 고려하십시오.
이러한 경우 대상 스레드에서 정기적으로 확인하는 종료_request 플래그를 사용하여 필요한 경우 종료를 트리거하는 것이 좋습니다.
정상 종료를 위한 코드 예:
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()
스레드가 종료되어야 할 때 stop()을 호출한 다음 Join()을 호출하여 올바른지 확인합니다.
스레드 강제 종료
어떤 경우에는 강제 스레드 종료가 필요할 수 있습니다. 긴 지연을 초래하는 외부 라이브러리 호출을 고려하십시오.
ThreadWithExc를 사용하여 예외 발생
ThreadWithExc 클래스를 사용하면 다른 스레드의 스레드 내에서 예외가 발생할 수 있습니다.
def _async_raise(tid, exctype): # Raises an Exception (exctype) in thread with ID (tid) if not inspect.isclass(exctype): raise TypeError("Only types can be raised (not instances)") class ThreadWithExc(threading.Thread): def raise_exc(self, exctype): # Raises exctype in the context of the current thread _async_raise(self._get_my_tid(), exctype)
스레드가 Python 인터프리터 외부에 있으면 이 방법을 신뢰할 수 없습니다. 필요한 정리를 수행하려면 스레드가 특정 예외를 포착하는지 확인하세요.
위 내용은 실행 중인 Python 스레드를 정상적으로 또는 강제로 중지할 수 있습니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!