std::thread 睡眠
时间: 2023-11-09 21:57:41 浏览: 259
sleep_thread.rar
在C++11之前,C++标准库没有提供睡眠函数。但是随着C++11的引入,我们可以使用std::this_thread::sleep_for()函数来使线程进入睡眠状态。这个函数需要接受一个时间段作为参数,可以是秒、毫秒、微秒等。例如,std::this_thread::sleep_for(std::chrono::seconds(3))将使当前线程睡眠3秒。
阅读全文