Handle exceptions thrown by new. : Exception « Development « C++






Handle exceptions thrown by new.

Handle exceptions thrown by new.
 

#include <iostream>
#include <new>
using namespace std;

int main()
{
  int *p, i;

   try { 
     p = new int[32]; // allocate memory for 32-element int array
   } catch (bad_alloc xa) {
     cout << "Allocation failure.\n";
     return 1;
  }

  for(i = 0; i <32; i++) 
     p[i] = i;

  for(i = 0; i <32; i++) 
     cout << p[i] << " ";

  delete [] p; // free the memory

  return 0;
}



           
         
  








Related examples in the same category

1.Rethrowing an ExceptionRethrowing an Exception
2.A try/catch can be inside a function other than main().A try/catch can be inside a function other than main().
3.Uses catch(...) to catch all exceptionsUses catch(...) to catch all exceptions
4.Catch exception: int i Catch exception: int i
5.Different types of exceptions can be caught.Different types of exceptions can be caught.
6.Restricting function throw types.Restricting function throw types.
7.An exception can be thrown from outside the try blockAn exception can be thrown from outside the try block
8.Throw and catch an exception inside a functionThrow and catch an exception inside a function
9.Matching Any Exception
10.No Exception Handling
11.Terminate Handler