다음을 통해 공유


atomic_fetch_and 함수

연산을 수행 and 값 및 기존에 저장 된 값에는 atomic 개체입니다.

template <class _Ty>
inline Ty atomic_fetch_and(
   volatile atomic<Ty>* Atom,
   Ty Value); _NOEXCEPT

template <class _Ty>
inline Ty atomic_fetch_and(
   volatile atomic<Ty>* Atom,
   Ty Value); _NOEXCEPT

매개 변수

  • Atom
    에 대 한 포인터는 atomic 형식의 값을 저장 하는 개체가 Ty.

  • Value
    Ty 형식의 값입니다.

반환 값

A Ty 비트의 결과 포함 하는 개체가 and.

설명

atomic_fetch_and 함수를 수행는 read-modify-write 저장 된 값을 대체 하는 작업 Atom 비트와 and 의 Value 에 저장 된 현재 값과 Atom를 사용 하 여은 memory_order_seq_cstmemory_order.

요구 사항

헤더: 원자

네임 스페이스: std

참고 항목

참조

<atomic>

원자 구조

atomic_fetch_and_explicit 함수