我線程程序是:錯誤編譯線程程序12.11
#include<iostream>
#include<thread>
using namespace std;
void t()
{
cout<<"from thread\n";
}
int main()
{
thread i(&t);
cout <<"from main\n";
i.join();
}
,但它顯示的代碼塊以下錯誤:
1)'thread ' was not declared in this scope
2)expected ';' before 'i'
3)'i' was not declared in this scope
我怎樣才能解決這個問題我使用Windows和代碼塊12.11
您正在使用哪種編譯器? – juanchopanza
抱歉無法忍受你 – mubir
CodeBlocks是一個使用編譯器的IDE。我知道它支持不同的編譯器,所以我想知道你正在使用哪一個。 – juanchopanza