标签: c++ exception try-catch stack-unwinding
#include <iostream> using namespace std; class B { public: ~B() { throw 42; } }; int main() { try { B obj; throw 32; } catch( int i ) { cout<<i<<endl; } }
执行上述代码时,程序突然终止。
注意:这是在线测试中要求的。