std::atomic::fetch_add
De cppreference.com
|
|
Esta página se ha traducido por ordenador/computador/computadora de la versión en inglés de la Wiki usando Google Translate.
La traducción puede contener errores y palabras aparatosas/incorrectas. Planea sobre el texto para ver la versión original. Puedes ayudar a corregir los errores y mejorar la traducción. Para instrucciones haz clic aquí. |
T fetch_add( T arg,
memory_order = std::memory_order_seq_cst );
T fetch_add( T arg,
memory_order = std::memory_order_seq_cst ) volatile;
|
(único miembro de especialización de plantilla atomic<Integral>)(desde C++11) |
|
T* fetch_add( std::ptrdiff_t arg,
memory_order = std::memory_order_seq_cst );
T* fetch_add( std::ptrdiff_t arg,
memory_order = std::memory_order_seq_cst ) volatile;
|
(único miembro de especialización de plantilla atomic<T*>)(desde C++11) |
|
Atómicamente sustituye el valor actual con el resultado de la suma aritmética del valor y
arg. La operación es de lectura-modificación-escritura de la operación. Memoria se ve afectada de acuerdo con el valor de memory_order .Original:
Atomically replaces the current value with the result of arithmetic addition of the value and
arg. The operation is read-modify-write operation. Memory is affected according to the value of memory_order.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Para los tipos de
Integral firmados, la aritmética se define para utilizar la representación complementaria de dos. Ya estáOriginal:
For signed
Integral types, arithmetic is defined to use two’s complement representation. ThereThe text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
hay resultados no definidos. Para los tipos de
T*, el resultado puede ser una dirección definida, pero las operaciones de otro modo no tienen un comportamiento no definido .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.
You can help to correct and verify the translation. Click here for instructions.
Parámetros
| arg | - | el otro argumento de la suma aritmética
Original: the other argument of arithmetic addition The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| memory_order | - | restricciones de memoria el orden de hacer cumplir
Original: memory order constraints to enforce 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
El valor de la variable atómica antes de la llamada .
Original:
The value of the atomic variable before the call.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Excepciones
Ver también
(C++11)(C++11) |
Agrega un valor no atómico a un objeto atómico y obtiene el valor anterior del objeto atómico. (plantilla de función) |