std::packaged_task
来自 cppreference.com
在头文件中定义 <future> |
||
template< class > class packaged_task; //未定义 |
(1) | (自 C++11 起) |
template< class R, class ...ArgTypes > class packaged_task<R(ArgTypes...)>; |
(2) | (自 C++11 起) |
类模板 std::packaged_task
包装任何 可调用 目标(函数、lambda 表达式、bind 表达式或其他函数对象),以便可以异步调用它。其返回值或抛出的异常存储在共享状态中,可以通过 std::future 对象访问。
与 std::function 一样, |
(直到 C++17) |
内容 |
[编辑] 成员函数
构造任务对象 (公共成员函数) | |
析构任务对象 (公共成员函数) | |
移动任务对象 (公共成员函数) | |
检查任务对象是否具有有效的函数 (公共成员函数) | |
交换两个任务对象 (公共成员函数) | |
获取结果 | |
返回与承诺结果关联的 std::future (公共成员函数) | |
执行 | |
执行函数 (公共成员函数) | |
执行函数,确保结果仅在当前线程退出后准备就绪 (公共成员函数) | |
重置状态,放弃以前执行的任何存储结果 (公共成员函数) |
[编辑] 非成员函数
专门化 std::swap 算法 (函数模板) |
[编辑] 辅助类
(C++11) (直到 C++17) |
专门化 std::uses_allocator 类型特征 (类模板特化) |
[编辑] 推导指南(自 C++17 起)
[编辑] 示例
运行此代码
#include <cmath> #include <functional> #include <future> #include <iostream> #include <thread> // unique function to avoid disambiguating the std::pow overload set int f(int x, int y) { return std::pow(x, y); } void task_lambda() { std::packaged_task<int(int, int)> task([](int a, int b) { return std::pow(a, b); }); std::future<int> result = task.get_future(); task(2, 9); std::cout << "task_lambda:\t" << result.get() << '\n'; } void task_bind() { std::packaged_task<int()> task(std::bind(f, 2, 11)); std::future<int> result = task.get_future(); task(); std::cout << "task_bind:\t" << result.get() << '\n'; } void task_thread() { std::packaged_task<int(int, int)> task(f); std::future<int> result = task.get_future(); std::thread task_td(std::move(task), 2, 10); task_td.join(); std::cout << "task_thread:\t" << result.get() << '\n'; } int main() { task_lambda(); task_bind(); task_thread(); }
输出
task_lambda: 512 task_bind: 2048 task_thread: 1024
[编辑] 错误报告
以下改变行为的错误报告被追溯应用到先前发布的 C++ 标准中。
DR | 应用于 | 已发布的行为 | 正确行为 |
---|---|---|---|
LWG 3117 | C++17 | packaged_task 的推导指南缺失 |
已添加 |
[编辑] 另请参阅
(C++11) |
等待异步设置的值 (类模板) |