2
¿Cómo funciona lanzar y atrapar objetos?
Con este código: int main() { try { throw -1; } catch (int& x) { std::cerr << "We caught an int exception with value: " << x << std::endl; } std::cout << "Continuing on our merry way." << std::endl; return 0; } Tenemos: /tmp$ ./prorgam.out Continuing on our merry way …