Espaços nominais
Variantes
Ações

std::atomic::operator+=,-=,&=,|=,^=

De cppreference.com

<metanoindex/>

 
 
Biblioteca operações atômica
Tipos
Original:
Types
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C++11)
Funções
Original:
Functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Bandeiras atômicas
Original:
Atomic flags
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Inicialização
Original:
Initialization
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Memória de encomenda
Original:
Memory ordering
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
 
std::atomic
Funções de membro
Original:
Member functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
atomic::atomic
atomic::operator=
atomic::is_lock_free
atomic::store
atomic::load
atomic::operator T
atomic::exchange
atomic::compare_exchange
Membro funções especializadas
Original:
Specialized member functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
atomic::fetch_add
atomic::fetch_sub
atomic::fetch_and
atomic::fetch_or
atomic::fetch_xor
atomic::operator++
atomic::operator++(int)
atomic::operator--
atomic::operator--(int)
atomic::operator+=
atomic::operator-=
atomic::operator&=
atomic::operator|=
atomic::operator^=
 
<tbody> </tbody>
T operator+=( T arg ); T operator+=( T arg ) volatile;
(1) (único membro da atomic<Integral> especialização modelo)
(desde C++11)
T* operator+=( std::ptrdiff_t arg ); T* operator+=( std::ptrdiff_t arg ) volatile;
(1) (único membro da atomic<T*> especialização modelo)
(desde C++11)
T operator-=( T arg ); T operator-=( T arg ) volatile;
(2) (único membro da atomic<Integral> especialização modelo)
(desde C++11)
T* operator-=( std::ptrdiff_t arg ); T* operator-=( std::ptrdiff_t arg ) volatile;
(2) (único membro da atomic<T*> especialização modelo)
(desde C++11)
T operator&=( T arg ); T operator&=( T arg ) volatile;
(3) (único membro da atomic<Integral> especialização modelo)
(desde C++11)
T operator|=( T arg ); T operator|=( T arg ) volatile;
(4) (único membro da atomic<Integral> especialização modelo)
(desde C++11)
T operator^=( T arg ); T operator^=( T arg ) volatile;
(5) (único membro da atomic<Integral> especialização modelo)
(desde C++11)
Atomicamente substitui o valor da corrente com o resultado do cálculo que envolve o valor anterior e arg. A operação é ler-modificar-escrever operação.
Original:
Atomically replaces the current value with the result of computation involving the previous value and arg. The operation is read-modify-write operation.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
1)
Executa adição atômica. Equivalente a fetch_add(arg).
Original:
Performs atomic addition. Equivalent to fetch_add(arg).
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
2)
Executa subtração atômica. Equivalente a fetch_sub(arg).
Original:
Performs atomic subtraction. Equivalent to fetch_sub(arg).
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
3)
Executa bit a bit atômica e. Equivalente a fetch_and(arg).
Original:
Performs atomic bitwise and. Equivalent to fetch_and(arg).
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
4)
Executa bit a bit atômica ou. Equivalente a fetch_or(arg).
Original:
Performs atomic bitwise or. Equivalent to fetch_or(arg).
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
5)
Executa atômica bit a bit exclusivo ou. Equivalente a fetch_xor(arg).
Original:
Performs atomic bitwise exclusive or. Equivalent to fetch_xor(arg).
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Para os tipos de Integral assinados, a aritmética é definida para usar dois representação de complemento. Lá
Original:
For signed Integral types, arithmetic is defined to use two’s complement representation. There
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
há resultados indefinidos. Para os tipos de T*, o resultado pode ser um endereço indefinido, mas as operações de outra forma não têm um comportamento indefinido.
Original:
are no undefined results. For T* types, the result may be an undefined address, but the operations otherwise have no undefined behavior.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Parâmetros

arg -
o argumento para a operação aritmética
Original:
the argument for the arithmetic operation
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Valor de retorno

O valor resultante.
Original:
The resulting value.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Exceções

noexcept specification:  
<tbody> </tbody>
noexcept
  (desde C++11)

Veja também

aumenta ou diminui o valor atômico por um
Original:
increments or decrements the atomic value by one
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(função pública membro) [edit]