バージョン
> g++ -v Using built-in specs. COLLECT_GCC=C:\MinGW\bin\g++.exe COLLECT_LTO_WRAPPER=c:/mingw/bin/../libexec/gcc/mingw32/6.3.0/lto-wrapper.exe Target: mingw32 Configured with: ../src/gcc-6.3.0/configure --build=x86_64-pc-linux-gnu --host=mingw32 --with-gmp=/mingw --with-mpfr=/mingw --with-mpc=/mingw --with-isl=/mingw --prefix=/mingw --disable-win32-registry --target=mingw32 --with-arch=i586 --enable-languages=c,c++,objc,obj-c++,fortran,ada --with-pkgversion='MinGW.org GCC-6.3.0-1' --enable-static --enable-shared --enable-threads --with-dwarf2 --disable-sjlj-exceptions --enable-version-specific-runtime-libs --with-libiconv-prefix=/mingw --with-libintl-prefix=/mingw --enable-libstdcxx-debug --with-tune=generic --enable-libgomp --disable-libvtv --enable-nls Thread model: win32 gcc version 6.3.0 (MinGW.org GCC-6.3.0-1)
現象
以下のコードを実行すると、terminate called after throwing an instance of 'std::out_of_range' what(): stoul
というエラーが出てプログラムが終了します。何が原因でしょうか?
c++
1#include <iostream> 2using namespace std; 3 4void solve(){ 5 uint64_t a = stoul("9999999999"); 6 cout << a << endl; 7} 8 9int main(int argc, char const *argv[]){ 10 solve(); 11 return 0; 12}
↓実行結果
> g++ hoge.cpp > ./a terminate called after throwing an instance of 'std::out_of_range' what(): stoul >
paiza.ioやwandboxでは正常に実行されていました。
・wandboxの実行結果
https://wandbox.org/permlink/h7471zaxo5p7Vfiy
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/08/30 00:34