Namensräume
Varianten
Aktionen

std::reverse_iterator::reverse_iterator

Aus cppreference.com

 
 
Iterator Bibliothek
Iterator Primitiven
Original:
Iterator primitives
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
iterator_traits
input_iterator_tag
output_iterator_tag
forward_iterator_tag
bidirectional_iterator_tag
random_access_iterator_tag
iterator
Iterator Adaptern
Original:
Iterator adaptors
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
reverse_iterator
Stream-Iteratoren
Original:
Stream iterators
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
istream_iterator
ostream_iterator
istreambuf_iterator
ostreambuf_iterator
Iterator Operationen
Original:
Iterator operations
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
advance
distance
prev(C++11)
next(C++11)
Reichen Zugang
Original:
Range access
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
begin(C++11)
end(C++11)
 
std::reverse_iterator
Member-Funktionen
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.
reverse_iterator::reverse_iterator
reverse_iterator::operator=
reverse_iterator::base
reverse_iterator::operator*
reverse_iterator::operator->
reverse_iterator::operator[]
reverse_iterator::operator++
reverse_iterator::operator+
reverse_iterator::operator+=
reverse_iterator::operator--
reverse_iterator::operator-
reverse_iterator::operator-=
Non-Member-Funktionen
Original:
Non-member functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
operator==
operator!=
operator<
operator>
operator+
operator-
 
reverse_iterator();
(1)
explicit reverse_iterator( Iterator x );
(2)
template< class U >
reverse_iterator( const reverse_iterator<U>& other );
(3)
Erzeugt ein neues Iterator-Adapter .
Original:
Constructs a new iterator adaptor.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
1)
Standardkonstruktor. current wird Wert initialisiert. Dies macht nur Sinn, wenn Operationen auf einem Wert initialisiert Iterator auch sinnvoll .
Original:
Default constructor. current is value-initialized. This makes sense only if operations on an value-initialized Iterator make also sense.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
2)
current mit x initialisiert .
Original:
current is initialized with x.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
3)
Kopieren Konstruktor. Die zugrundeliegende Iterator mit derjenigen other initialisiert .
Original:
Copy constructor. The underlying iterator is initialized with that of other.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[Bearbeiten] Parameter

x -
Iterator anpassen
Original:
iterator to adapt
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
other -
Iterator-Adapter zu kopieren
Original:
iterator adaptor to copy
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[Bearbeiten] Beispiel

[Bearbeiten] Siehe auch

ordnet eine andere Iterator
Original:
assigns another iterator
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(öffentliche Elementfunktion) [edit]