在 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;
}