uncaught_exception
Zwraca true tylko wtedy, gdy thrown wyjątek jest przetwarzana obecnie.
bool uncaught_exception( );
Wartość zwracana
Zwraca true po zakończeniu oceny wyrażenia throw i przed zakończeniem inicjalizacji zgłoszenie wyjątku w pasujące obsługi lub telefonicznej nieoczekiwany w wyniku wyrażenia throw.W szczególności uncaught_exception zwróci true po wywołaniu z destruktor, wywoływana podczas unwind wyjątek.Na urządzeniach uncaught_exception jest obsługiwany tylko na Windows CE 5,00 i nowsze wersje, łącznie z platform Windows Mobile 2005.
Przykład
// 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 (...) {
}
}
Wymagania
Nagłówek: <exception>
Obszar nazw: std