atomic_compare_exchange_strong 함수
원자 비교 및 교환 작업을 수행합니다.
template <class Ty>
inline bool atomic_compare_exchange_strong(
volatile atomic<Ty> *Atom,
Ty *Exp,
Ty Value
) _NOEXCEPT;
template <class Ty>
inline bool atomic_compare_exchange_strong(
atomic<Ty> *Atom,
Ty *Exp,
TyValue
) _NOEXCEPT;
매개 변수
Atom
에 대 한 포인터는 atomic 형식의 값을 저장 하는 개체가 Ty.Exp
포인터 형식의 값에 Ty.Value
Ty 형식의 값입니다.
반환 값
A bool 값 비교 결과를 나타냅니다.
설명
이 메서드는 사용 하 여 암시적 원자 비교 및 교환 작업 수행 memory_order_seq_cstmemory_order 인수.자세한 내용은 atomic_compare_exchange_strong_explicit 함수를 참조하십시오.
요구 사항
헤더: 원자
네임 스페이스: std