spec3.c

来自「this is a gcc file, you can download it 」· C语言 代码 · 共 39 行

C
39
字号
// Testing exception specifications.// Test 3: the bad_exception throw succeeds.#include <stdlib.h>#include <exception>void my_term ()  { exit (1); }void my_unexp () { throw 42; }voidf () throw (std::bad_exception){  throw 'a';}int main (){  std::set_terminate (my_term);  std::set_unexpected (my_unexp);  try    {      f ();    }  catch (char)    {      return 2;    }  catch (int)    {      return 3;    }  catch (std::bad_exception)    {      return 0;    }  return 5;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?