5

在 gcc 4.4.6、RHEL 6.3 linux 上,我在线程头中看到了模板

template<typename _Rep, typename _Period>
  inline void
  sleep_for(const chrono::duration<_Rep, _Period>& __rtime)

但是如果我尝试在我的应用程序中使用它,我会收到错误消息sleep_for is not a member of std::this_thread

我的应用程序很简单

#include <thread>
#include <chrono>

using namespace std;

int main()
{
  this_thread::sleep_for(chrono::seconds(1));
   return 0;
}
4

1 回答 1

7

编译时将此参数添加到命令行:

-D_GLIBCXX_USE_NANOSLEEP

所以像这样编译:

gcc -D_GLIBCXX_USE_NANOSLEEP test.cpp -o test

如果使用 g++,你可以使用

g++ -std=gnu++0x -pthread test.cpp -o test
于 2013-01-31T01:42:59.347 回答