yohhoyの日記

技術的メモをしていきたい日記

2014-08-15から1日間の記事一覧

オペランド指定無しthrow式

C++

プログラミング言語C++のオペランド指定無しthrow式の振る舞いについてメモ。 #include <iostream> void do_rethrow() { // オペランドなしthrow式 throw; } int main() { try { try { throw 42; } catch (...) { // int型の値42を再throwする do_rethrow(); } } catch</iostream>…