cplusplus
.com
教程
参考
文章
论坛
C++
教程
参考
文章
论坛
参考
C 库
<cassert> (assert.h)
<cctype> (ctype.h)
<cerrno> (errno.h)
C++11
<cfenv> (fenv.h)
<cfloat> (float.h)
C++11
<cinttypes> (inttypes.h)
<ciso646> (iso646.h)
<climits> (limits.h)
<clocale> (locale.h)
<cmath> (math.h)
<csetjmp> (setjmp.h)
<csignal> (signal.h)
<cstdarg> (stdarg.h)
C++11
<cstdbool> (stdbool.h)
<cstddef> (stddef.h)
C++11
<cstdint> (stdint.h)
<cstdio> (stdio.h)
<cstdlib> (stdlib.h)
<cstring> (string.h)
C++11
<ctgmath> (tgmath.h)
<ctime> (time.h)
C++11
<cuchar> (uchar.h)
<cwchar> (wchar.h)
<cwctype> (wctype.h)
容器
C++11
<array>
<deque>
C++11
<forward_list>
<list>
<map>
<queue>
<set>
<stack>
C++11
<unordered_map>
C++11
<unordered_set>
<vector>
输入/输出
<fstream>
<iomanip>
<ios>
<iosfwd>
<iostream>
<istream>
<ostream>
<sstream>
<streambuf>
多线程
C++11
<atomic>
C++11
<condition_variable>
C++11
<future>
C++11
<mutex>
C++11
<thread>
其他
<algorithm>
<bitset>
C++11
<chrono>
C++11
<codecvt>
<complex>
<exception>
<functional>
C++11
<initializer_list>
<iterator>
<limits>
<locale>
<memory>
<new>
<numeric>
C++11
<random>
C++11
<ratio>
C++11
<regex>
<stdexcept>
<string>
C++11
<system_error>
C++11
<tuple>
C++11
<type_traits>
C++11
<typeindex>
<typeinfo>
<utility>
<valarray>
<future>
类
C++11
future
C++11
future_error
C++11
packaged_task
C++11
promise
C++11
shared_future
枚举类
C++11
future_errc
C++11
future_status
C++11
launch
函数
C++11
async
C++11
future_category
packaged_task
C++11
packaged_task::~packaged_task
C++11
packaged_task::packaged_task
成员函数
C++11
packaged_task::get_future
C++11
packaged_task::make_ready_at_thread_exit
C++11
packaged_task::operator()
C++11
packaged_task::operator=
C++11
packaged_task::reset
C++11
packaged_task::swap
C++11
packaged_task::valid
非成员重载
C++11
swap (packaged_task)
非成员特化
C++11
uses_allocator<packaged_task>
参考
<future>
packaged_task
make_ready_at_thread_exit
public member function
<future>
std::
packaged_task
::make_ready_at_thread_exit
void make_ready_at_thread_exit (args... args);
调用存储的任务,在线程退出时使其就绪
调用
存储的任务
,将
args
作为参数转发,就像调用其
operator()
成员一样,但不同于调用完成后立即使
共享状态
就绪,而是使
共享状态
在线程退出时就绪。
如果一个与同一
共享状态
关联的
future
对象正在等待
future::get
的调用,它将保持阻塞直到线程结束。一旦线程结束,对
future::get
的调用将解除阻塞并返回或抛出异常。
请注意,调用此函数已设置
共享状态
中的值,任何在此调用和线程结束之间尝试修改此值的调用都将抛出
future_error
,并将
promise_already_satisfied
作为
错误条件
。
参数
args...
调用的参数。
Args...
是
packaged_task
的模板参数,它们代表
存储的任务
的参数类型。
返回值
无。
数据竞争
*packaged_task*已被修改。
共享状态
被修改为
原子操作
(不引起数据竞争),同步在线程结束时发生。
异常安全
基本保证:
如果抛出异常,*
packaged_task
*处于有效状态。
此成员函数在以下条件下抛出异常
exception type
error condition
描述
future_error
future_errc::no_state
该对象没有*共享状态*(它是*
默认构造
*的*
packaged_task
*)。
future_error
future_errc::promise_already_satisfied
存储的任务
已被调用
此成员函数还会在参数的任何复制或移动操作抛出异常时抛出,并且(取决于库实现)也可能抛出以报告其他情况。
另见
packaged_task::operator()
调用存储的任务
(public member function)
packaged_task::get_future
获取 future
(public member function)
future::get
Get value
(public member function)