atomic_init功能

atomic 对象中存储的值。

template <class Ty>
inline void atomic_init(
   volatile atomic<Ty> *Atom,
   Ty Value
) _NOEXCEPT;
template <class Ty>
inline void atomic_init(
   atomic<Ty> *Atom,
   TyValue
) _NOEXCEPT;

参数

  • Atom
    若要存储类型 Ty的值 atomic 对象的指针。

  • Value
    一个 Ty 类型的值。

备注

atomic_init 不是基本操作。 这不是线程安全的。

要求

基本标头:

命名空间: std

请参见

参考

<atomic>

原子结构