terminate (CRT)

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

void terminate( void );

备注

terminate 函数使用与 C++ 异常处理和在以下情况下调用:

  • 一个匹配的 catch 处理程序不能用于引发的 C++ 异常中。

  • 异常是由析构函数引发堆栈展开过程。

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

默认情况下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。有关更多信息,请参见 平台调用示例

请参见

参考

异常处理实例

abort

_set_se_translator

set_terminate (crt)

set_unexpected (crt)

unexpected (CRT)