std::this_thread::sleep_until
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <thread> 中定义
|
||
template< class Clock, class Duration > void sleep_until( const std::chrono::time_point<Clock,Duration>& sleep_time ); |
(C++11 起) | |
。阻止当前线程的执行,直到指定
sleep_time
已经达到了。可能会阻止长于sleep_time
已经达到了前.原文:
Blocks the execution of the current thread until specified
sleep_time
has been reached. May block for longer than until sleep_time
has been reached.[编辑] 。参数。
sleep_time | - | 。阻塞,直到。
|
===。 返回值。===
。 (无)。
[编辑] 。例外。
[编辑] 。另请参阅。
(C++11) |
暂停当前线程执行指定时间 (函数) |