C++ Tutorial/Exceptions/standard exceptions

Материал из C\C++ эксперт
Перейти к: навигация, поиск

standard exceptions

#include <iostream.h>
#include <exception>
#include <typeinfo>
class A {};
int main () {
  try {
    A * a = NULL;
    typeid (*a);
  }
  catch (std::exception& e)
  {
    cout << "Exception: " << e.what();
  }
  return 0;
}