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::async
- std::launch
- std::future_status
- std::future_error
- std::future_category
- std::future_errc
- 注释
- 实验性 C++ 特性
- 有用的资源
- 索引
- std 符号索引
- 协程支持 (C++20)
- C++ 关键词
std::call_once
定义于头文件 <mutex>
|
||
template< class Callable, class... Args > void call_once( std::once_flag& flag, Callable&& f, Args&&... args ); |
(C++11 起) | |
准确执行一次可调用 (Callable) 对象 f
,即使同时从多个线程调用。
细节为:
- 若在调用
call_once
的时刻,flag
指示已经调用了f
,则call_once
立即返回(称这种对call_once
的调用为消极)。
- 否则,
call_once
以参数 std::forward<Args>(args)... 调用 std::forward<Callable>(f) (如同用 std::invoke )。不同于 std::thread 构造函数或 std::async ,不移动或复制参数,因为不需要转移它们到另一执行线程(称这种对call_once
的调用为积极)。
- 若该调用抛异常,则传播异常给
call_once
的调用方,并且不翻转flag
,以令其他调用将得到尝试(这种对call_once
的调用被称为异常)。 - 若该调用正常返回(这种对
call_once
的调用被称为返回),则翻转flag
,并保证以同一flag
对call_once
的其他调用为消极。
- 若该调用抛异常,则传播异常给
同一 flag
上的所有积极调用组成单独全序,它们由零或多个异常调用后随一个返回调用组成。该顺序中,每个积极调用的结尾同步于下个积极调用。
从返回调用的返回同步于同一 flag
上的所有消极调用:这表示保证所有对 call_once
的同时调用都观察到积极调用所做的任何副效应,而无需额外同步。
参数
flag | - | 对象,对于它只有一个函数得到执行 |
f | - | 要调用的可调用 (Callable) 对象 |
args... | - | 传递给函数的参数 |
返回值
(无)
异常
- 若任何条件阻止对
call_once
的调用按规定执行,则抛出 std::system_error - 任何
f
所抛的异常
注解
若对 call_once
的同时调用传递不同的 f
,则调用哪个 f
是未指定的。被选择函数运行于与传递它的 call_once
的调用相同的线程。
即使在从多个线程调用时,也保证函数局域静态对象的初始化仅出现一次,这可能比使用 std::call_once
的等价代码更为高效。
此函数的 POSIX 类似物是 pthread_once 。
缺陷报告
下列更改行为的缺陷报告追溯地应用于以前出版的 C++ 标准。
DR | 应用于 | 出版时的行为 | 正确行为 |
---|---|---|---|
LWG 2442 | C++11 | 在调用前复制并/或移动参数 | 不进行复制/移动 |
示例
运行此代码
#include <iostream> #include <thread> #include <mutex> std::once_flag flag1, flag2; void simple_do_once() { std::call_once(flag1, [](){ std::cout << "Simple example: called once\n"; }); } void may_throw_function(bool do_throw) { if (do_throw) { std::cout << "throw: call_once will retry\n"; // 这会出现多于一次 throw std::exception(); } std::cout << "Didn't throw, call_once will not attempt again\n"; // 保证一次 } void do_once(bool do_throw) { try { std::call_once(flag2, may_throw_function, do_throw); } catch (...) { } } int main() { std::thread st1(simple_do_once); std::thread st2(simple_do_once); std::thread st3(simple_do_once); std::thread st4(simple_do_once); st1.join(); st2.join(); st3.join(); st4.join(); std::thread t1(do_once, true); std::thread t2(do_once, true); std::thread t3(do_once, false); std::thread t4(do_once, true); t1.join(); t2.join(); t3.join(); t4.join(); }
可能的输出:
Simple example: called once throw: call_once will retry throw: call_once will retry Didn't throw, call_once will not attempt again
参阅
(C++11) |
确保 call_once 只调用函数一次的帮助对象 (类) |