命名空间
变体
操作

std::future

来自 cppreference.com
< cpp‎ | thread
 
 
并发支持库
线程
(C++11)
(C++20)
this_thread 命名空间
(C++11)
(C++11)
(C++11)
协作取消
互斥
(C++11)
通用锁管理
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
条件变量
(C++11)
信号量
闩锁和屏障
(C++20)
(C++20)
期货
(C++11)
future
(C++11)
(C++11)
(C++11)
安全回收
(C++26)
危险指针
原子类型
(C++11)
(C++20)
原子类型的初始化
(C++11)(C++20 中已弃用)
(C++11)(C++20 中已弃用)
内存排序
原子操作的自由函数
原子标志的自由函数
 
 
定义在头文件 <future>
template< class T > class future;
(1) (自 C++11 起)
template< class T > class future<T&>;
(2) (自 C++11 起)
template<> class future<void>;
(3) (自 C++11 起)

类模板 std::future 提供了一种机制来访问异步操作的结果

  • 异步操作的创建者可以使用各种方法来查询、等待或从 std::future 中提取值。如果异步操作尚未提供值,这些方法可能会阻塞。
  • 当异步操作准备向创建者发送结果时,它可以通过修改与创建者的 std::future 关联的共享状态(例如 std::promise::set_value)来执行。

请注意,std::future 引用了与任何其他异步返回值对象不共享的共享状态(与 std::shared_future 相反)。

内容

[编辑] 成员函数

构造 future 对象
(公共成员函数) [编辑]
析构 future 对象
(公共成员函数) [编辑]
移动 future 对象
(公共成员函数) [编辑]
将共享状态从 *this 传输到 shared_future 并返回它
(公共成员函数) [编辑]
获取结果
返回结果
(公共成员函数) [编辑]
状态
检查 future 是否具有共享状态
(公共成员函数) [编辑]
等待结果可用
(公共成员函数) [编辑]
等待结果,如果在指定的超时时间内不可用,则返回
(公共成员函数) [编辑]
等待结果,如果在指定的截止时间之前不可用,则返回
(公共成员函数) [编辑]

[编辑] 示例

#include <future>
#include <iostream>
#include <thread>
 
int main()
{
    // future from a packaged_task
    std::packaged_task<int()> task([]{ return 7; }); // wrap the function
    std::future<int> f1 = task.get_future(); // get a future
    std::thread t(std::move(task)); // launch on a thread
 
    // future from an async()
    std::future<int> f2 = std::async(std::launch::async, []{ return 8; });
 
    // future from a promise
    std::promise<int> p;
    std::future<int> f3 = p.get_future();
    std::thread([&p]{ p.set_value_at_thread_exit(9); }).detach();
 
    std::cout << "Waiting..." << std::flush;
    f1.wait();
    f2.wait();
    f3.wait();
    std::cout << "Done!\nResults are: "
              << f1.get() << ' ' << f2.get() << ' ' << f3.get() << '\n';
    t.join();
}

输出

Waiting...Done!
Results are: 7 8 9

[编辑] 带有异常的示例

#include <future>
#include <iostream>
#include <thread>
 
int main()
{
    std::promise<int> p;
    std::future<int> f = p.get_future();
 
    std::thread t([&p]
    {
        try
        {
            // code that may throw
            throw std::runtime_error("Example");
        }
        catch (...)
        {
            try
            {
                // store anything thrown in the promise
                p.set_exception(std::current_exception());
            }
            catch (...) {} // set_exception() may throw too
        }
    });
 
    try
    {
        std::cout << f.get();
    }
    catch (const std::exception& e)
    {
        std::cout << "Exception from the thread: " << e.what() << '\n';
    }
    t.join();
}

输出

Exception from the thread: Example

[编辑] 另请参见

(C++11)
异步运行一个函数(可能在新的线程中)并返回一个 std::future,该 future 将保存结果
(函数模板) [编辑]
等待异步设置的值(可能由其他期货引用)
(类模板) [编辑]