std::packaged_task::get_future
来自cppreference.com
< cpp | thread | packaged task
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
std::future<R> get_future(); |
(C++11 起) | |
。返回
future
共享相同的共享状态*this.原文:
Returns a
future
which shares the same shared state as *this.。
get_future
可以只调用一次,每个packaged_task
.原文:
get_future
can be called only once for each packaged_task
.[编辑] 。参数。
。 (无)。
===。 返回值。===
。共享相同的共享状态*this未来的.
原文:
A future which shares the same shared state as *this.
[编辑] 。例外。
。 std::future_error下面的错误情况。
原文:
std::future_error on the following error conditions:
- 。共享状态已经通过调用
get_future
检索。错误类别设置为future_already_retrieved.原文:The shared state has already been retrieved via a call toget_future
. The error category is set to future_already_retrieved.