std::atomic_flag::atomic_flag

来自cppreference.com
< cpp‎ | atomic‎ | atomic flag
 
 
并发支持库
线程
(C++11)
(C++20)
(C++20)
this_thread 命名空间
(C++11)
(C++11)
(C++11)
原子类型
(C++11)
(C++20)
原子类型的初始化
(C++11)(C++20 中弃用)
(C++11)(C++20 中弃用)
原子操作的自由函数
原子标志的自由函数
内存序
互斥
(C++11)
通用锁管理
(C++11)
(C++11)
(C++11)
(C++11)(C++11)(C++11)
(C++11)
(C++11)
条件变量
(C++11)
信号量
闩与屏障
(C++20)
(C++20)
future
(C++11)
(C++11)
(C++11)
(C++11)
 
 
在标头 <atomic> 定义
(1)
atomic_flag() noexcept = default;
(C++11 起)
(C++20 前)
constexpr atomic_flag() noexcept;
(C++20 起)
atomic_flag( const atomic_flag& ) = delete;
(2) (C++11 起)

构造新的 std::atomic_flag

1) 平凡默认构造函数,初始化 std::atomic_flag 为未指定状态。
(C++20 前)
1) 初始化 std::atomic_flag 为清除状态。
(C++20 起)
2) 复制构造函数被删除; std::atomic_flag 不可复制。

另外, std::atomic_flag 能以表达式 ATOMIC_FLAG_INIT 值初始化。对于拥有静态存储期atomic_flag ,这保证静态初始化:标志能用于静态对象的构造函数中。

参阅

std::atomic_flag 初始化为 false
(宏常量)