命名空间
变体
操作

std::future

来自 cppreference.cn
< 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 中已弃用)
内存排序
(C++11)(C++26 中已弃用)
原子操作的自由函数
原子标志的自由函数
 
 
在头文件 <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并返回它
(公共成员函数) [编辑]
Getting the result
返回结果
(公共成员函数) [编辑]
State
检查 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 引用)
(类模板) [编辑]