我使用macports编译并安装了gcc4.4.
当我尝试使用 - > g ++ -g -Wall -ansi -pthread -std = c ++ 0x main.cpp ...进行编译时:
#include <thread>
...
std::thread t(handle);
t.join();
....
Run Code Online (Sandbox Code Playgroud)
编译器返回:
cserver.cpp: In member function 'int CServer::run()':
cserver.cpp:48: error: 'thread' is not a member of 'std'
cserver.cpp:48: error: expected ';' before 't'
cserver.cpp:49: error: 't' was not declared in this scope
Run Code Online (Sandbox Code Playgroud)
但std::cout <<...编译好..
谁能帮我?