terminate1.c
来自「gcc-you can use this code to learn somet」· C语言 代码 · 共 28 行
C
28 行
// Test that an exception thrown out of the constructor for the exception// object (i.e. "after completing evaluation of the expression to be thrown// but before the exception is caught") causes us to call terminate.#include <exception>#include <cstdlib>void my_terminate (){ std::exit (0);}struct A{ A () {} A (const A&) { throw 1; }};int main (void){ std::set_terminate (my_terminate); A a; try { throw a; } catch (...) {} return 1;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?