Compartilhar via


list::rend

Retorna um iterador que trata o local que segue último elemento na lista inversa.

const_reverse_iterator rend( ) const; 
reverse_iterator rend( );

Valor de retorno

Um iterador bidirecional invertido que trata da localização de sucesso do último elemento em uma lista invertida (o local que precedeu o primeiro elemento da lista não invertida).

Comentários

rend é usado com uma lista invertida assim como end é usado com uma lista.

Se o valor de retorno de rend for atribuído a const_reverse_iterator, não será possível alterar o objeto de lista. Se o valor de retorno de rend for atribuído a reverse_iterator, será possível modificar o objeto de lista.

rend pode ser usado para testar se um iterador reverso atingiu o final de sua lista.

O valor retornado por rend não deve ter a referência cancelada.

Exemplo

// list_rend.cpp
// compile with: /EHsc
#include <list>
#include <iostream>

int main( ) 
{
   using namespace std;
   list <int> c1;
   list <int>::iterator c1_Iter;
   list <int>::reverse_iterator c1_rIter;

   // If the following line had replaced the line above, an error would 
   // have resulted in the line modifying an element (commented below)
   // because the iterator would have been const
   // list <int>::const_reverse_iterator c1_rIter;
   
   c1.push_back( 10 );
   c1.push_back( 20 );
   c1.push_back( 30 );

   c1_rIter = c1.rend( );
   c1_rIter --;  // Decrementing a reverse iterator moves it forward in 
                 // the list (to point to the first element here)
   cout << "The first element in the list is: " << *c1_rIter << endl;

   cout << "The list is:";
   for ( c1_Iter = c1.begin( ); c1_Iter != c1.end( ); c1_Iter++ )
      cout << " " << *c1_Iter;
   cout << endl;

   // rend can be used to test if an iteration is through all of the 
   // elements of a reversed list
   cout << "The reversed list is:";
   for ( c1_rIter = c1.rbegin( ); c1_rIter != c1.rend( ); c1_rIter++ )
      cout << " " << *c1_rIter;
   cout << endl;

   c1_rIter = c1.rend( );
   c1_rIter--;  // Decrementing the reverse iterator moves it backward 
                // in the reversed list (to the last element here)

   *c1_rIter = 40;  // This modification of the last element would have 
                    // caused an error if a const_reverse iterator had 
                    // been declared (as noted above)

   cout << "The modified reversed list is:";
   for ( c1_rIter = c1.rbegin( ); c1_rIter != c1.rend( ); c1_rIter++ )
      cout << " " << *c1_rIter;
   cout << endl;
}
  

Requisitos

Cabeçalho: <lista>

Namespace: std

Consulte também

Referência

Classe list

Biblioteca de Modelos Padrão