Python線程捕獲不到異常的原因是因為線程中的異常默認(rèn)是不會被拋出到主線程的。
解決這個問題,可以使用try/except語句在線程內(nèi)部捕獲異常,并將異常信息傳遞給主線程。可以通過以下幾種方式實現(xiàn):
import threading
# 全局變量用于保存異常信息
global_exception = None
def thread_function():
global global_exception
try:
# 線程邏輯
pass
except Exception as e:
global_exception = e
# 創(chuàng)建線程
thread = threading.Thread(target=thread_function)
# 啟動線程
thread.start()
# 等待線程結(jié)束
thread.join()
# 檢查異常信息
if global_exception:
print("Thread exception:", global_exception)
import threading
import queue
# 創(chuàng)建隊列用于線程間通信
exception_queue = queue.Queue()
def thread_function():
try:
# 線程邏輯
pass
except Exception as e:
# 將異常信息放入隊列
exception_queue.put(e)
# 創(chuàng)建線程
thread = threading.Thread(target=thread_function)
# 啟動線程
thread.start()
# 等待線程結(jié)束
thread.join()
# 檢查異常信息
if not exception_queue.empty():
exception = exception_queue.get()
print("Thread exception:", exception)
無論使用哪種方式,都需要在主線程中檢查是否有異常發(fā)生,并處理異常信息。