cppreference.com
创建账户
登录
名字空间
页面
讨论
变换
不转换
简体
繁體
大陆简体
香港繁體
澳門繁體
大马简体
新加坡简体
台灣正體
查看
查看
编辑
历史
操作
std::packaged_task<R(Args...)>::
swap
来自cppreference.com
<
cpp
|
thread
|
packaged task
C++
语言
标准库头文件
自立与有宿主实现
具名要求
语言支持库
概念库
(C++20)
诊断库
工具库
字符串库
容器库
迭代器库
范围库
(C++20)
算法库
数值库
本地化库
输入/输出库
文件系统库
(C++17)
正则表达式库
(C++11)
原子操作库
(C++11)
线程支持库
(C++11)
技术规范
[编辑]
线程支持库
线程
thread
(C++11)
jthread
(C++20)
stop_token
(C++20)
stop_source
(C++20)
stop_callback
(C++20)
hardware_destructive_interference_size
hardware_constructive_interference_size
(C++17)
(C++17)
this_thread
命名空间
get_id
(C++11)
yield
(C++11)
sleep_for
(C++11)
sleep_until
(C++11)
互斥
mutex
(C++11)
recursive_mutex
(C++11)
shared_mutex
(C++17)
timed_mutex
(C++11)
recursive_timed_mutex
(C++11)
shared_timed_mutex
(C++14)
通用锁管理
lock_guard
(C++11)
scoped_lock
(C++17)
unique_lock
(C++11)
shared_lock
(C++14)
defer_lock_t
try_to_lock_t
adopt_lock_t
(C++11)
(C++11)
(C++11)
lock
(C++11)
try_lock
(C++11)
defer_lock
try_to_lock
adopt_lock
(C++11)
(C++11)
(C++11)
once_flag
(C++11)
call_once
(C++11)
条件变量
condition_variable
(C++11)
condition_variable_any
(C++11)
notify_all_at_thread_exit
(C++11)
cv_status
(C++11)
信号量
counting_semaphore
binary_semaphore
(C++20)
(C++20)
闩与屏障
latch
(C++20)
barrier
(C++20)
future
promise
(C++11)
future
(C++11)
shared_future
(C++11)
packaged_task
(C++11)
async
(C++11)
launch
(C++11)
future_status
(C++11)
future_error
(C++11)
future_category
(C++11)
future_errc
(C++11)
[编辑]
std::packaged_task
成员函数
packaged_task::packaged_task
packaged_task::~packaged_task
packaged_task::operator=
packaged_task::valid
packaged_task::swap
获取结果
packaged_task::get_future
执行
packaged_task::operator()
packaged_task::make_ready_at_thread_exit
packaged_task::reset
非成员函数
std::swap
(std::packaged_task)
辅助类
std::uses_allocator
<std::packaged_task>
(C++17 前)
推导指引
(C++17)
[编辑]
void
swap
(
packaged_task
&
other
)
noexcept
;
(C++11 起)
交换
*
this
与
other
的共享状态和存储的任务。
[
编辑
]
参数
other
-
要交换状态的 packaged_task
[
编辑
]
返回值
(无)
[
编辑
]
参阅
std::swap
(std::packaged_task)
(C++11)
特化
std::swap
算法
(函数模板)
[编辑]