terminate1.c
来自「Mac OS X 10.4.9 for x86 Source Code gcc」· C语言 代码 · 共 29 行
C
29 行
// { dg-do run }// 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 + -
显示快捷键?