本篇文章帶給大家的內容是關於Python中raise 與 raise ... from之間有何不同?有一定的參考價值,有需要的朋友可以參考一下,希望對你有幫助。
起步
Python 的 raise 和 raise from 之間的差異是什麼?
try: print(1 / 0) except Exception as exc: raise RuntimeError("Something bad happened")
輸出:
Traceback (most recent call last): File "test4.py", line 2, in <module> print(1 / 0) ZeropisionError: pision by zero During handling of the above exception, another exception occurred: Traceback (most recent call last): File "test4.py", line 4, in <module> raise RuntimeError("Something bad happened") RuntimeError: Something bad happened
而raise from
:
try: print(1 / 0) except Exception as exc: raise RuntimeError("Something bad happened") from exc
輸出:
Traceback (most recent call last): File "test4.py", line 2, in <module> print(1 / 0) ZeropisionError: pision by zero The above exception was the direct cause of the following exception: Traceback (most recent call last): File "test4.py", line 4, in <module> raise RuntimeError("Something bad happened") from exc RuntimeError: Something bad happened
##分析
不同之處在於,from 會為異常物件設定 __cause__ 屬性顯示異常的是由誰直接造成的。 處理異常時發生了新的異常,不使用 from 時更傾向於新異常與正在處理的異常值沒有關聯。而 from 則是能指出新異常是因舊異常直接造成的。這樣的異常之間的關聯有助於後續對異常的分析和檢查。 from 語法會有個限制,就是第二個表達式必須是另一個異常類別或實例。 如果在異常處理程序或 finally 區塊中引發異常,則預設情況下,異常機制會隱含工作會將先前的異常附加為新異常的 __context__ 屬性。 當然,也可以透過 with_traceback() 方法為異常設定上下文 __context__ 屬性,而這也能在 traceback 更好的顯示異常訊息。raise Exception("foo occurred").with_traceback(tracebackobj)
禁止異常關聯
from 還有特別的用法:raise ... from None ,它透過設定 __suppress_context__ 屬性指定來明確禁止例外關係:try: print(1 / 0) except Exception as exc: raise RuntimeError("Something bad happened") from None
Traceback (most recent call last): File "test4.py", line 4, in <module> raise RuntimeError("Something bad happened") from None RuntimeError: Something bad happened
總結
#在異常處理程序或 finally 區塊中引發異常,Python 會為異常設定上下文,可以手動透過 with_traceback () 設定其上下文,或透過 from 來指定異常因誰所造成的。這些手段都是為了得到更友善的異常回溯訊息,印出清晰的異常上下文。若要忽略上下文,則可以透過 raise ... from None 來禁止自動顯示異常上下文。#
以上是Python中raise 與 raise ... from之間有何差別?的詳細內容。更多資訊請關注PHP中文網其他相關文章!