共用方式為


uncaught_exception

,但只有在沒有擲回的例外狀況目前處理序,傳回 true 。

bool uncaught_exception( );

傳回值

傳回 true 完成擲回運算式的評估之後及完整的例外狀況宣告的初始化相符之處理常式的呼叫或由於擲回運算式的 未預期的錯誤。 之前。 特別是, uncaught_exception 從在例外狀況發生時叫用回溯的解構函式會傳回 true ,呼叫。 在裝置上, Windows CE 5.00 (含) 以上的版本才支援 uncaught_exception ,包括 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