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