<exception>
函数
current_exception
获取指向当前异常的智能指针。
exception_ptr current_exception();
返回值
指向当前异常的 exception_ptr 对象。
备注
调用 catch 块中的 current_exception
函数。 如果异常处于飞行状态,而且 catch 块可捕获该异常,则 current_exception
函数将返回引用该异常的 exception_ptr
对象。 否则,该函数将返回 null exception_ptr
对象。
current_exception
函数会捕获动态异常,而不管 catch
语句是否指定 exception-declaration 语句。
如果不重新引发当前异常,则将在 catch
块的末尾调用该异常的析构函数。 但是,即使调用析构函数中的 current_exception
函数,该函数仍返回引用当前异常的 exception_ptr
对象。
对 current_exception
函数的相继调用将返回引用当前异常的不同副本的 exception_ptr
对象。 因此,由于对象引用不同的副本,即使副本具有相同的二进制值,其比较结果也是不相等。
make_exception_ptr
创建保留异常副本的 exception_ptr 对象。
template <class E>
exception_ptr make_exception_ptr(E Except);
参数
Except
具有要复制的异常的类。 通常,指定异常类对象作为参数传递给 make_exception_ptr
函数,但任意类对象都可以是参数。
返回值
指向 Except 的当前异常副本的 exception_ptr 对象。
备注
调用 make_exception_ptr
函数等效于引发 C++ 异常、在 catch 块中捕获它并调用 current_exception 函数以返回引用异常的 exception_ptr
对象。 Microsoft 实现的 make_exception_ptr
函数比调用并捕获异常更高效。
应用程序通常不需要 make_exception_ptr
函数,因此,我们不建议使用此函数。
rethrow_exception
引发作为参数传递的异常。
void rethrow_exception(exception_ptr P);
参数
P
要再次引发的已捕获异常。 如果 P 为 null exception_ptr,此函数将引发 std::bad_exception。
注解
在 exception_ptr
对象中存储捕获的异常后,主线程便可以处理该对象。 在主线程中,调用 rethrow_exception
函数,将 exception_ptr
对象作为其参数。 rethrow_exception
函数从 exception_ptr
对象中提取异常,然后在主线程的上下文中引发异常。
get_terminate
获取当前的 terminate_handler
函数。
terminate_handler get_terminate();
set_terminate
建立程序终止时要调用的新 terminate_handler
。
terminate_handler set_terminate(terminate_handler fnew) throw();
参数
fnew
终止时要调用的函数。
返回值
上一个在终止时用于调用的函数的地址。
备注
如同函数 * fnew 一样,该函数建立新的 terminate_handler。 因此,fnew 不得为 null 指针。 函数将返回上一个终止处理程序的地址。
示例
// exception_set_terminate.cpp
// compile with: /EHsc
#include <exception>
#include <iostream>
using namespace std;
void termfunction()
{
cout << "My terminate function called." << endl;
abort();
}
int main()
{
terminate_handler oldHandler = set_terminate(termfunction);
// Throwing an unhandled exception would also terminate the program
// or we could explicitly call terminate();
//throw bad_alloc();
terminate();
}
get_unexpected
获取当前的 unexpected_handler
函数。
unexpected_handler get_unexpected();
rethrow_if_nested
template <class E>
void rethrow_if_nested(const E& e);
备注
如果不是多态类类型,或者 nested_exception
不可访问或不明确,则不起作用。 否则,执行动态强制转换。
set_unexpected
建立遇到意外异常时要调用的新 unexpected_handler
。
unexpected_handler set_unexpected(unexpected_handler fnew) throw();
参数
fnew
遇到意外异常时要调用的函数。
返回值
上一个 unexpected_handler
的地址。
备注
fnew 不得为 null 指针。
C++ 标准要求在函数引发其引发列表中未包含的异常时调用 unexpected
。 当前实现不支持此操作。 以下示例直接调用 unexpected
,后者随后调用 unexpected_handler
。
示例
// exception_set_unexpected.cpp
// compile with: /EHsc
#include <exception>
#include <iostream>
using namespace std;
void uefunction()
{
cout << "My unhandled exception function called." << endl;
terminate(); // this is what unexpected() calls by default
}
int main()
{
unexpected_handler oldHandler = set_unexpected(uefunction);
unexpected(); // library function to force calling the
// current unexpected handler
}
terminate
调用终止处理程序。
void terminate();
注解
此函数调用终止处理程序,即 void
类型的函数。 如果直接通过程序调用了 terminate
,则此终止处理程序是最近通过对 set_terminate 的调用设置的那一个。 如果在引发表达式计算期间出于任何其他原因调用了 terminate
,则终止处理程序是在引发表达式计算后立即生效的那一个。
终止处理程序可能不会返回至其调用方。 程序启动时,终止处理程序是调用 abort
的函数。
示例
有关 terminate
的使用示例,请参阅 set_unexpected。
throw_with_nested
template <class T> [[noreturn]]
void throw_with_nested(T&& t);
注解
使用嵌套异常引发异常。
uncaught_exception
仅当引发的异常当前正在处理时返回 true
。
bool uncaught_exception();
返回值
在完成引发表达式计算后,以及完成匹配处理程序中的异常声明初始化或引发表达式导致的调用 unexpected 前,返回 true
。 具体来说,在异常展开期间调用的析构函数进行调用后,uncaught_exception
将返回 true
。 在设备上,仅 Windows CE 5.00 及更高版本(包括 Windows Mobile 2005 平台)支持 uncaught_exception
。
示例
// exception_uncaught_exception.cpp
// compile with: /EHsc
#include <exception>
#include <iostream>
#include <string>
class Test
{
public:
Test( std::string msg ) : m_msg( msg )
{
std::cout << "In Test::Test(\"" << m_msg << "\")" << std::endl;
}
~Test( )
{
std::cout << "In Test::~Test(\"" << m_msg << "\")" << std::endl
<< " std::uncaught_exception( ) = "
<< std::uncaught_exception( )
<< std::endl;
}
private:
std::string m_msg;
};
// uncaught_exception will be true in the destructor
// for the object created inside the try block because
// the destructor is being called as part of the unwind.
int main( void )
{
Test t1( "outside try block" );
try
{
Test t2( "inside try block" );
throw 1;
}
catch (...) {
}
}
In Test::Test("outside try block")
In Test::Test("inside try block")
In Test::~Test("inside try block")
std::uncaught_exception( ) = 1
In Test::~Test("outside try block")
std::uncaught_exception( ) = 0
意外
调用意外处理程序。
void unexpected();
备注
C++ 标准要求在函数引发其引发列表中未包含的异常时调用 unexpected
。 当前实现不支持此操作。 此示例直接调用会调用意外处理程序的 unexpected
。
此函数调用意外处理程序,即 void
类型的函数。 如果直接通过程序调用了 unexpected
,则此意外处理程序是最近通过对 set_unexpected 的调用设置的那一个。
意外处理程序可能不会返回其调用方。 其可能通过以下方式终止执行:
引发异常规范中所列出的类型的对象,或如果直接通过程序调用了意外处理程序,则引发任意类型的对象。
引发 bad_exception 类型的对象。
调用 terminate、
abort
或exit
。
程序启动时,意外处理程序是调用 terminate 的函数。
示例
有关 unexpected
的使用示例,请参阅 set_unexpected。