atomic::operator++ 연산자
저장된 값을 증가 시킵니다. 포인터와 정수 계열 특수화만 사용합니다.
Ty atomic<Ty>::operator++(int) volatile _NOEXCEPT;
Ty atomic<Ty>::operator++(int) _NOEXCEPT;
Ty atomic<Ty>::operator++() volatile _NOEXCEPT;
Ty atomic<Ty>::operator++() _NOEXCEPT;
반환 값
The first two operators return the incremented value; the last two operators return the value before the increment. The operators use the memory_order_seq_cst memory_order.
요구 사항
헤더: atomic
네임스페이스: std