std::promise::get_future
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
std::future<R> get_future(); |
(C++11 起) | |
。返回相同的共享状态,*this与未来的对象.
原文:
Returns a future object associated with the same shared state as *this.
。异常被抛出,如果*this没有共享的状态或
get_future
已经被称为.原文:
Exception is thrown if *this has no shared state or
get_future
has already been called.[编辑] 。参数。
。 (无)。
===。 返回值。===
。未来的的*this共享状态。
原文:
A future referring to the shared state of *this
[编辑] 。例外。
。 std::future_error在下述条件下:。
原文:
std::future_error on the following conditions:
- 。
get_future()
已经调用同一个共享状态,*this承诺。错误类别设置为future_already_retrieved.原文:get_future()
has already been called on a promise with the same shared state as *this. The error category is set to future_already_retrieved.