C++ 参考手册
- C++11
- C++14
- C++17
- C++20
- C++ 编译器支持情况表
- 独立与宿主实现
- C++ 语言
- C++ 关键词
- 预处理器
- C++ 标准库头文件
- 具名要求
- 功能特性测试 (C++20)
- 工具库
- 类型支持(基本类型、RTTI、类型特性)
- 概念库 (C++20)
- 错误处理
- 动态内存管理
- 日期和时间工具
- 字符串库
- 容器库
- 迭代器库
- 范围库 (C++20)
- 算法库
- 数值库
- 输入/输出库
- 文件系统库
- 本地化库
- 正则表达式库
- 原子操作库
- 线程支持库
- std::thread
- std::stop_token
- std::stop_source
- std::stop_callback
- std::this_thread::get_id
- std::shared_timed_mutex
- std::shared_lock
- std::lock_guard
- std::hardware_destructive_interference_size, std::hardware_constructive_interference_size
- std::counting_semaphore, std::binary_semaphore
- std::jthread
- cpp/thread/barrier
- std::future
- std::this_thread::yield
- std::this_thread::sleep_for
- std::this_thread::sleep_until
- std::mutex
- std::recursive_mutex
- std::shared_mutex
- std::timed_mutex
- std::recursive_timed_mutex
- std::scoped_lock
- std::unique_lock
- std::defer_lock_t, std::try_to_lock_t, std::adopt_lock_t
- std::lock
- std::try_lock
- std::defer_lock, std::try_to_lock, std::adopt_lock
- std::once_flag
- std::call_once
- std::condition_variable
- std::condition_variable_any
- std::notify_all_at_thread_exit
- std::cv_status
- std::latch
- std::promise
- std::shared_future
- std::packaged_task
- std::uses_allocator<std::packaged_task>
- std::swap(std::packaged_task)
- std::async
- std::launch
- std::future_status
- std::future_error
- std::future_category
- std::future_errc
- 注释
- 实验性 C++ 特性
- 有用的资源
- 索引
- std 符号索引
- 协程支持 (C++20)
- C++ 关键词
std::packaged_task
定义于头文件 <future>
|
||
template< class > class packaged_task; // 不定义 |
(1) | (C++11 起) |
template< class R, class ...Args > class packaged_task<R(Args...)>; |
(2) | (C++11 起) |
类模板 std::packaged_task
包装任何可调用 (Callable) 目标(函数、 lambda 表达式、 bind 表达式或其他函数对象),使得能异步调用它。其返回值或所抛异常被存储于能通过 std::future 对象访问的共享状态中。
正如 std::function , std::packaged_task
是多态、具分配器的容器:可在堆上或以提供的分配器分配存储的可调用对象。
成员函数
构造任务对象 (公开成员函数) | |
析构任务对象 (公开成员函数) | |
移动任务对象 (公开成员函数) | |
检查任务对象是否拥有合法函数 (公开成员函数) | |
交换二个任务对象 (公开成员函数) | |
获取结果 | |
返回与承诺的结果关联的 std::future (公开成员函数) | |
执行 | |
执行函数 (公开成员函数) | |
执行函数,并确保结果仅在一旦当前线程退出时就绪 (公开成员函数) | |
重置状态,抛弃任何先前执行的存储结果 (公开成员函数) |
非成员函数
特化 std::swap 算法 (函数模板) |
帮助类
(C++11)(C++17 前) |
特化 std::uses_allocator 类型特征 (类模板特化) |
示例
运行此代码
#include <iostream> #include <cmath> #include <thread> #include <future> #include <functional> // 避免对 std::pow 重载集消歧义的独有函数 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++11) |
等待被异步设置的值 (类模板) |