<metanoindex/>
<tbody> </tbody> T operator++(); T operator++() volatile; |
(1) | (Mitglied nur atomic<Integral> Template-Spezialisierung)(seit C++11) |
T* operator++(); T* operator++() volatile; |
(1) | (Mitglied nur atomic<T*> Template-Spezialisierung)(seit C++11) |
T operator++( int ); T operator++( int ) volatile; |
(2) | (Mitglied nur atomic<Integral> Template-Spezialisierung)(seit C++11) |
T* operator++( int ); T* operator++( int ) volatile; |
(2) | (Mitglied nur atomic<T*> Template-Spezialisierung)(seit C++11) |
T operator--(); T operator--() volatile; |
(3) | (Mitglied nur atomic<Integral> Template-Spezialisierung)(seit C++11) |
T* operator--(); T* operator--() volatile; |
(3) | (Mitglied nur atomic<T*> Template-Spezialisierung)(seit C++11) |
T operator--( int ); T operator--( int ) volatile; |
(4) | (Mitglied nur atomic<Integral> Template-Spezialisierung)(seit C++11) |
T* operator--( int ); T* operator--( int ) volatile; |
(4) | (Mitglied nur atomic<T*> Template-Spezialisierung)(seit C++11) |
Atomar erhöht oder verringert den aktuellen Wert. Die Bedienung ist Lese-Modifizieren-Schreib-Operation .
Original:
Atomically increments or decrements the current value. 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.
You can help to correct and verify the translation. Click here for instructions.
1)
Führt atomaren Post-Inkrement. Entspricht
fetch_add(1)+1 .Original:
Performs atomic post-increment. Equivalent to
fetch_add(1)+1.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.
2)
Führt atomaren Prä-Inkrement. Entspricht
fetch_add(1) .Original:
Performs atomic pre-increment. Equivalent to
fetch_add(1).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.
3)
Führt atomaren Post-Dekrement. Entspricht
fetch_sub(1)-1Original:
Performs atomic post-decrement. Equivalent to
fetch_sub(1)-1The 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.
4)
Führt atomaren Prä-Dekrement. Entspricht
fetch_sub(1) .Original:
Performs atomic pre-decrement. Equivalent to
fetch_sub(1).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.
Für signierte
Integral Typen wird Arithmetik definiert Zweierkomplementdarstellung verwenden. ThereOriginal:
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.
keine undefinierten Ergebnissen. Für
T* Typen, kann das Ergebnis eine undefinierte Adresse, aber die Operationen sonst keine undefinierten Verhalten .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.
Parameter
(None)
Original:
(none)
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.
Rückgabewert
@ @ 1,3 Der Wert des atomaren variablen nach der Modifikation .
Original:
@1,3@ The value of the atomic variable after the modification.
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.
@ 2,4 @ Der Wert der atomare Variable vor der Änderung .
Original:
@2,4@ The value of the atomic variable before the modification.
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.
Ausnahmen
Siehe auch
addieren, subtrahieren, oder führt bitweise AND, OR, XOR mit dem atomaren Wert Original: adds, subtracts, or performs bitwise AND, OR, XOR with the atomic value The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (öffentliche Elementfunktion) | |