Udostępnij za pośrednictwem


set_terminate (<exception>)

Ustanawia nowy terminate_handler do wywołania na zakończenie programu.

terminate_handler
   set_terminate(
      terminate_handler _Pnew
   ) throw( );

Parametry

  • _Pnew
    Po zakończeniu wywołanie funkcji.

Wartość zwracana

Adres poprzedniej funkcji używanych do wywołania po zakończeniu.

Uwagi

Funkcja ustanawia nowy terminate_handler jako funkcja * _Pnew.Zatem, _Pnew nie może być null wskaźnika.Funkcja zwraca adres poprzedniego zakończyć obsługi.

Przykład

// exception_set_terminate.cpp
// compile with: /EHsc /c
#include<exception>
#include<iostream>

using namespace std;

void termfunction( ) 
{
   cout << "I'll be back." << endl;
   abort( );
}

int main( ) 
{
   terminate_handler oldHand = set_terminate(termfunction);

   // Throwing an unhandled exception would also terminate the program
   throw bad_alloc( );

   // The program could also be explicitely terminated with:
   // terminate( );
}
  
  
  

Wymagania

Nagłówek: <exception>

Obszar nazw: std