◐ Shell
clean mode source ↗

std::reverse_iterator::reverse_iterator – cppreference.com

Aus cppreference.com

<metanoindex/>

<tbody> </tbody>

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.

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.

Beispiel

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]