std::reverse_iterator::operator*,->
Aus cppreference.com
< cpp | iterator | reverse iterator
![]() |
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
reference operator*() const; |
(1) | |
pointer operator->() const; |
(2) | |
Gibt einen Verweis oder Zeiger auf das Element zurück, um
current
.Original:
Returns a reference or pointer to the element previous to
current
.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)
Entspricht d_tmp = current; --d_tmp; return *d_tmp;;
Original:
Equivalent to d_tmp = current; --d_tmp; return *d_tmp;;
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)
Entspricht &(operator*()) .
Original:
Equivalent to &(operator*()).
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.
Inhaltsverzeichnis |
[Bearbeiten] 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.
[Bearbeiten] Rückgabewert
Referenz oder Zeiger auf das Element zurück, um
current
.Original:
Reference or pointer to the element previous to
current
.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.
[Bearbeiten] Notes
Der Iterator-Objekt enthält eine zusätzliche Membervariable
d_tmp
, nicht eine temporäre Variable, um zu vermeiden, um einen Verweis, die über die Lebensdauer der mit ihr verbundenen Iterator besteht .Original:
The iterator object contains an auxiliary member variable
d_tmp
, not a temporary variable, to avoid returning a reference that persists beyond the lifetime of its associated iterator.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.
[Bearbeiten] Beispiel
This section is incomplete Reason: no example |
[Bearbeiten] Siehe auch
erhält rvalue Bezug auf indizierte Element Original: obtains rvalue reference to indexed element The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (öffentliche Elementfunktion) |