std::shared_future<T>::wait
来自 cppreference.com
< cpp | thread | shared future
void wait() const; |
(自 C++11 起) | |
阻塞,直到结果可用。调用后,valid() == true。
如果在调用此函数之前 valid
() == false,则行为未定义。
内容 |
[编辑] 参数
(无)
[编辑] 返回值
(无)
[编辑] 异常
可能会抛出实现定义的异常。
[编辑] 注意
鼓励实现检测 valid() == false 在调用之前的这种情况,并抛出一个 std::future_error,其错误条件为 std::future_errc::no_state。
从多个线程调用同一 std::shared_future
上的 wait 是不安全的;预期用途是,每个在同一共享状态上等待的线程都拥有一个 std::shared_future
的副本。
[编辑] 示例
运行此代码
#include <chrono> #include <future> #include <iostream> #include <thread> int fib(int n) { if (n < 3) return 1; else return fib(n - 1) + fib(n - 2); } int main() { std::shared_future<int> f1 = std::async(std::launch::async, []() { return fib(40); }); std::shared_future<int> f2 = std::async(std::launch::async, []() { return fib(43); }); std::cout << "waiting... " << std::flush; const auto start = std::chrono::system_clock::now(); f1.wait(); f2.wait(); const auto diff = std::chrono::system_clock::now() - start; std::cout << std::chrono::duration<double>(diff).count() << " seconds\n"; std::cout << "f1: " << f1.get() << '\n'; std::cout << "f2: " << f2.get() << '\n'; }
可能的输出
waiting... 1.61803 seconds f1: 102334155 f2: 433494437
[编辑] 另请参见
等待结果,如果在指定超时时间内未获得结果,则返回 (公共成员函数) | |
等待结果,如果在指定时间点到达之前未获得结果,则返回 (公共成员函数) |