terminate (CRT)
呼叫abort或函式指定使用set_terminate。
void terminate( void );
備註
terminate函式可搭配 C++ 例外處理,則稱為 「 在下列情況:
找不到擲回的 C++ 例外狀況相符的 catch 處理常式。
在堆疊回溯期間發生例外狀況解構函式。
堆疊已損毀之後擲回例外狀況。
terminate呼叫abort預設狀況下。 您可以變更此預設值,藉由撰寫自己的終止函式,並呼叫set_terminate您做為引數的函式的名稱。 terminate最後一個引數所指定的函式會呼叫set_terminate。 如需詳細資訊,請參閱 C + + 例外狀況。
需求
常式 |
所需的標頭 |
---|---|
terminate |
<eh.h> |
其他的相容性資訊,請參閱相容性在簡介中。
範例
// crt_terminate.cpp
// compile with: /EHsc
#include <eh.h>
#include <process.h>
#include <iostream>
using namespace std;
void term_func();
int main()
{
int i = 10, j = 0, result;
set_terminate( term_func );
try
{
if( j == 0 )
throw "Divide by zero!";
else
result = i/j;
}
catch( int )
{
cout << "Caught some integer exception.\n";
}
cout << "This should never print.\n";
}
void term_func()
{
cout << "term_func() was called by terminate().\n";
// ... cleanup tasks performed here
// If this function does not exit, abort is called.
exit(-1);
}
.NET Framework 對等用法
不適用。 若要呼叫標準的 c 函式,使用PInvoke。 如需詳細資訊,請參閱平台叫用範例。