std::atomic_flag::atomic_flag
来自cppreference.com
< cpp | atomic | atomic flag
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <atomic> 中定义
|
||
atomic_flag(); |
(1) | (C++11 起) |
atomic_flag( const atomic_flag& ) = delete; |
(2) | (C++11 起) |
构造一个新的std::atomic_flag.
1) 常用的默认构造函数初始化std::atomic_flag未指定状态.
2) 原文:
Trivial default constructor, initializes std::atomic_flag to unspecified state.
拷贝构造函数被删除;std::atomic_flag是不是复制的.
原文:
The copy constructor is deleted; std::atomic_flag is not copyable.
此外,std::atomic_flag值初始化为透明状态的表达ATOMIC_FLAG_INIT。对于atomic_flag具有静态存储持续时间,这保证此标志的值是已知的任何静态对象构造函数运行之前.
原文:
In addition, std::atomic_flag can be value-initialized to clear state with the expression ATOMIC_FLAG_INIT. For an atomic_flag with static storage duration, this guarantees that the values of this flag is known before any constructors are run for static objects.
[编辑] 参数
arg | - | ATOMIC_FLAG_INIT的结果
|
[编辑] 例外
1)[编辑] 另请参阅
(C++11) |
initializes an std::atomic_flag to false (常量宏) |