簡單的程序是這樣錯誤:命名空間「STD」「互斥」不姓在GCC類型4.6.2
#include <iostream> // std::cout
#include <thread> // std::thread
#include <mutex> // std::mutex
std::mutex mtx; // mutex for critical section
int main()
{
return 0;
}
嘗試了以下編譯
$ /usr/local/Cellar/gcc46/4.6.4/bin/g++-4.6 -std=gnu++0x -I/usr/local/Cellar/gcc46/4.6.4/gcc/include/c++ -L/usr/local/Cellar/gcc46/4.6.4/gcc/lib temp_mutex.cpp
temp_mutex.cpp:6:1: error: 'mutex' in namespace 'std' does not name a type
順便說我我正在Mac上編譯。
檢查[this](http://stackoverflow.com/questions/14191566/c-mutex-in-namespace-std-does-not-name-a-type),也許幫助 – ningyuwhut
嗯,[這個人] (http://stackoverflow.com/q/10308167/13)在Mac上的gcc 4.7上成功使用了'std :: mutex'。試試看。 :-D –
我試過了,但沒有運氣。 – rkb