std::future_status
提供: cppreference.com
![]() |
このページは、Google 翻訳を使って英語版から機械翻訳されました。
翻訳には誤りや奇妙な言い回しがあるかもしれません。文章の上にポインタをおくと、元の文章が見れます。誤りを修正して翻訳を改善する手助けをしてください。翻訳についての説明は、ここをクリックしてください。 |
Defined in header <future>
|
||
enum class future_status { ready, |
(C++11およびそれ以降) | |
Specifies state of a future as returned by wait_for
and wait_until
functions of std::future and std::shared_future.
定数
Original: Constant The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
Explanation |
deferred
|
the shared state contains a deferred function, so the result will be computed only when explicitly requested |
ready
|
the shared state is ready |
timeout
|
the shared state did not become ready before specified timeout duration has passed |
[編集] 参照
waits for the result, returns if it is not available for the specified timeout duration (パブリックメンバ関数of std::future )
| |
waits for the result, returns if it is not available for the specified timeout duration (パブリックメンバ関数of std::shared_future )
| |
指定された時点に達するまでそれが利用可能でない場合、結果を待って、返します Original: waits for the result, returns if it is not available until specified time point has been reached The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (パブリックメンバ関数of std::future )
| |
指定された時点に達するまでそれが利用可能でない場合、結果を待って、返します Original: waits for the result, returns if it is not available until specified time point has been reached The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (パブリックメンバ関数of std::shared_future )
|