int main()
try{
runtime_error("hogehoge ...");
} catch (exception& e){
std::cerr<<"エラー: "<e.what()<<'\n';
}
暇なときにこれについて考えて最終的に至った自分の中の結論が
このブロック文は関数外で変数定義する文と同じ使い方をしているんだ。となったのですが自分でも自信がありません。 初学者にもわかるように解説をしていただけると助かります、お願いします。
int main()
try{
runtime_error("hogehoge ...");
} catch (exception& e){
std::cerr<<"エラー: "<e.what()<<'\n';
}
ホントに?これがコードの全体
/******************************************************************************
Welcome to GDB Online.
GDB online is an online compiler and debugger tool for C, C++, Python, Java, PHP, Ruby, Perl,
C#, VB, Swift, Pascal, Fortran, Haskell, Objective-C, Assembly, HTML, CSS, JS, SQLite, Prolog.
Code, Compile, Run and Debug online from anywhere in world.
*******************************************************************************/
#include <iostream>
#include <stdexcept>
#include <cstdlib>
int
main()
try{
throw std::runtime_error("hogehoge ...");
} catch (std::exception& e){
std::cerr << "エラー: " << e.what() << std::endl;
}