std::reverse_iterator::operator++,+,+=,--,-,-= – cppreference.com
Aus cppreference.com
<metanoindex/>
<tbody> </tbody>
|
|
(1) | |
|
|
(2) | |
|
|
(3) | |
|
|
(4) | |
|
|
(5) | |
|
|
(6) | |
|
|
(7) | |
|
|
(8) | |
Erhöht oder vermindert den Iterator. Inverse operations are applied to the underlying operator because of the reverse order.
Original:
Increments or decrements the iterator. Inverse operations are applied to the underlying operator because of the reverse order.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
1-2)
Pre-Schritten oder pre-dekrementiert um ein bzw. .
Original:
Pre-increments or pre-decrements by one respectively.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
3-4)
Post-Schritten oder nach verringert sich um ein bzw. .
Original:
Post-increments or post-decrements by one respectively.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
5-6)
Gibt einen Iterator, die durch n oder -n Positionen vorgerückt wird jeweils .
Original:
Returns an iterator which is advanced by n or -n positions respectively.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
7-8)
Advances den Iterator um n oder -n Positionen bzw. .
Original:
Advances the iterator by n or -n positions respectively.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Rückgabewert
1) *this
2)
Eine Kopie *this, die vor der Änderung vorgenommen wurde
Original:
a copy of *this that was made before the change
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
3) reverse_iterator(base()-n) or reverse_iterator(base()+n) respectively.
4) *this
Beispiel
Siehe auch
Fortschritte der Iterator Original: advances the iterator The text has been machine-translated via Google Translate. (Funktions-Template) [edit] | |