std::this_thread::sleep_for
提供:cppreference.com
|
|
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
| Defined in header <thread>
|
||
| template< class Rep, class Period > void sleep_for( std::chrono::duration<Rep,Period> sleep_duration ); |
(C + + 11以来) | |
ブロック少なくとも現在のスレッドの実行を指定
sleep_duration. Original:
Blocks the execution of the current thread for at least the specified
sleep_duration. The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
基礎となるオペレーティング·システムが
sleep_forで指定された粒度をサポートしていない場合sleep_durationへの通話はsleep_durationより長くブロックすることがあります.Original:
Calls to
sleep_for may block for longer than sleep_duration if the underlying operating system does not support the granularity specified by sleep_duration.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
目次 |
[編集] パラメータ
| sleep_duration | - | スリープ時間の長さ
Original: time duration to sleep The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[編集] 値を返します
(なし)
Original:
(none)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[編集] 例外
[編集] 例
#include <iostream> #include <chrono> #include <thread> int main() { std::cout << "Hello waiter" << std::endl; std::chrono::milliseconds dura( 2000 ); std::this_thread::sleep_for( dura ); std::cout << "Waited 2000 ms\n"; }
Output:
Hello waiter Waited 2000 ms
[編集] も参照してください
| (C++11) |
stops the execution of the current thread until a specified time point (機能) |