set_new_handler
Instalar uma função de usuário que deve ser chamado quando operator new falha na tentativa para atribuir a memória.
new_handler set_new_handler(
new_handler _Pnew
) throw( );
Parâmetros
- _Pnew
o new_handler a ser instalado.
Valor de retorno
0 na primeira chamada e new_handler anterior em chamadas subseqüentes.
Comentários
A função _Pnew armazena em um ponteiro de novo manipulador estático que mantenha, então retorna o valor armazenado anteriormente no ponteiro.O novo manipulador é usado por operador novosize_t().
Exemplo
// new_set_new_handler.cpp
// compile with: /EHsc
#include<new>
#include<iostream>
using namespace std;
void __cdecl newhandler( )
{
cout << "The new_handler is called:" << endl;
throw bad_alloc( );
return;
}
int main( )
{
set_new_handler (newhandler);
try
{
while ( 1 )
{
new int[5000000];
cout << "Allocating 5000000 ints." << endl;
}
}
catch ( exception e )
{
cout << e.what( ) << endl;
}
}
Requisitos
Cabeçalho: <new>
namespace: STD