std::this_thread::sleep_for(st
时间: 2023-08-19 13:12:41 浏览: 174
Java Thread之Sleep()使用方法总结
std::this_thread::sleep_for 是 C++ 的标准库中的一个函数,用于在当前线程中暂停一段时间。可以传入一个 std::chrono::duration 类型的参数,表示暂停的时间。例如:std::this_thread::sleep_for(std::chrono::seconds(1)) 表示当前线程暂停 1 秒。
阅读全文