std::atomic_store, std::atomic_store_explicit
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <atomic> 中定义
|
||
template< class T > void atomic_store( std::atomic<T>* obj, T desr ); |
(1) | (C++11 起) |
template< class T > void atomic_store( volatile std::atomic<T>* obj, T desr ); |
(2) | (C++11 起) |
template< class T > void atomic_store_explicit( std::atomic<T>* obj, T desr, |
(3) | (C++11 起) |
template< class T > void atomic_store_explicit( volatile std::atomic<T>* obj, T desr, |
(4) | (C++11 起) |
原子取代的价值
3-4) obj
仿佛desr
obj->store(desr)指向的值原文:
Atomically replaces the value pointed to by
obj
with the value of desr
as if by obj->store(desr)原子取代的价值
obj
仿佛desr
obj->store(desr, order)指向的值原文:
Atomically replaces the value pointed to by
obj
with the value of desr
as if by obj->store(desr, order)目录 |
[编辑] 参数
obj | - | 指针的原子对象修改
原文: pointer to the atomic object to modify |
desr | - | 要存储的值在原子的对象
原文: the value to store in the atomic object |
order | - | 内存同步进行此操作的顺序:只有std::memory_order_relaxed,std::memory_order_release和std::memory_order_seq_cst是允许的.....
原文: the memory synchronization ordering for this operation: only std::memory_order_relaxed, std::memory_order_release and std::memory_order_seq_cst are permitted. |
[编辑] 返回值
无
[编辑] 例外
[编辑] 另请参阅
(C++11) |
以原子的原子对象的值替换的非原子的说法 原文: atomically replaces the value of the atomic object with a non-atomic argument (公共成员函数of std::atomic )
|
(C++11) (C++11) |
原子获得的值存储在一个原子对象 原文: atomically obtains the value stored in an atomic object (函数模板) |
(C++11) |
定义内存排序约束给定的原子操作 原文: defines memory ordering constraints for the given atomic operation (typedef) |
专业的原子操作,std::shared_ptr 原文: specializes atomic operations for std::shared_ptr (函数模板) | |
C documentation for atomic_store, atomic_store_explicit
|