#include <iostream> using namespace std; int main() { try { if (1) { throw exception(); //catch中用引用。 // new throw exception(); //catch 中用指针。 } } catch (exception &e) { cerr << "catch exception\n"; } return 0; }
catch(…)
..