例外狀況處理常式
使用 C++ 例外狀況處理函式在程式執行期間從非預期的事件復原。
例外狀況處理函式
函式 | 使用 |
---|---|
_set_se_translator |
以 C++ 類型化例外狀況處理 Win32 例外狀況 (C 結構化例外狀況) |
set_terminate |
安裝要由 terminate 呼叫的專屬終止常式 |
set_unexpected |
安裝要由 unexpected 呼叫的專屬終止函式 |
terminate |
在擲回例外狀況之後,在某些情況下自動呼叫。 terminate 函式會呼叫 abort 或您使用 set_terminate 指定的函式 |
unexpected |
呼叫 terminate 或您使用 set_unexpected 指定的函式。 函 unexpected 式不會用於目前的Microsoft C++例外狀況處理實作 |