uncaught_exception

时,所引发的异常。当前处理,则返回 true。

bool uncaught_exception( );

返回值

返回 true 在完成计算表达式并在完成之后引发异常声明的初始化匹配的处理程序或的调用作为引发表达式的 意外。 具体而言,uncaught_exception 会返回 true,同时调用从在展开异常时调用的析构函数。 在设备上,由 uncaught_exception 在 Windows CE 5.00 和更高的版本只支持,包括 Windows Mobile 2005 平台。

示例

// 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 (...) {
   }
}
  

要求

标头: <exception >

命名空间: std