私のプログラムは以下のようになります
#include <iostream>
#include <thread>
#include <exception>
void hello()
{
std::cout << "Hello world!!!!" << std::endl;
}
int main()
{
std::cout << "In Main\n";
std::thread t(hello);
t.join();
return 0;
}
次のコマンドを使用してコンパイルすると、エラーは発生しません
g++-4.7 -std=c++11 main.cpp
しかし、実行すると次のエラーが発生します
メインで 「std::system_error」のインスタンスをスローした後に呼び出される終了 what(): 許可されていない操作 中止 (コアダンプ)
誰かが私が間違っているところを手伝ってくれますか?