CppDS.com

C++ 98 11 14 17 20 手册

std::future_status

来自cppreference.com
< cpp‎ | thread
定义于头文件 <future>
enum class future_status {

    ready,
    timeout,
    deferred

};
(C++11 起)

指定 std::futurestd::shared_futurewait_forwait_until 函数所返回的 future 状态。

 
常量 解释
deferred 共享状态含有延迟的函数,故将仅在显式请求时计算结果
ready 共享状态就绪
timeout 共享状态在经过指定的时限时长前仍未就绪

参阅

等待结果,如果在指定的超时间隔后仍然无法得到结果,则返回。
(std::future<T> 的公开成员函数)
等待结果,如果在指定的超时间隔后仍然无法得到结果,则返回。
(std::shared_future<T> 的公开成员函数)
等待结果,如果在已经到达指定的时间点时仍然无法得到结果,则返回。
(std::future<T> 的公开成员函数)
等待结果,如果在已经到达指定的时间点时仍然无法得到结果,则返回。
(std::shared_future<T> 的公开成员函数)
关闭