terminate (CRT)

调用 abort 或使用 set_terminate 指定的函数。

语法

void terminate( void );

备注

terminate 函数与 C++ 异常处理一起使用,并在以下情况下调用:

  • 无法为引发的 C++ 异常找到匹配的 catch 处理程序。

  • 在堆栈展开过程中,析构函数引发了异常。

  • 在引发异常后,堆栈已损坏。

默认情况下,terminate 调用 abort。 可以通过以下方式更改此默认行为:编写自己的终止函数并调用 set_terminate(将该函数的名称作为其参数)。 terminate 调用作为 set_terminate 的参数提供的最后一个函数。 有关详细信息,请参阅 未经处理的 C++ 异常

默认情况下,此函数的全局状态范围限定为应用程序。 若要更改此行为,请参阅 CRT 中的全局状态

要求

例程 必需的标头
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);
}
term_func() was called by terminate().

另请参阅

异常处理例程
abort
_set_se_translator
set_terminate
set_unexpected
unexpected