std::this_thread::sleep_for (std::chrono::seconds(2));
时间: 2023-07-22 22:11:03 浏览: 107
C++11 std::shared_ptr总结与使用示例代码详解
std::this_thread::sleep_for 是 C++11 中的一个函数,它位于 std::this_thread 命名空间中。该函数用于使当前线程暂停执行一段指定的时间。在你提供的代码中,std::chrono::seconds(2) 表示暂停执行 2 秒钟。因此,调用 std::this_thread::sleep_for(std::chrono::seconds(2)) 会使当前线程暂停执行 2 秒钟。注意,需要包含 <thread> 和 <chrono> 头文件来使用这个函数。
阅读全文