다음을 통해 공유


list::rend

주소를 거꾸로 된 목록의 마지막 요소 뒤에 위치 하는 반복기를 반환 합니다.

const_reverse_iterator rend( ) const;
reverse_iterator rend( );

반환 값

반전 된 목록 (첫 번째 요소 내용이 되돌릴 수 없는 목록에서 앞에 있는 위치)의 마지막 요소 뒤에 위치를 해결 하는 역방향 양방향 반복기입니다.

설명

rend반전 된 목록으로 사용으로 목록에 사용 됩니다.

경우 반환 값의 rend 배정은 const_reverse_iterator, 목록 개체를 수정할 수 없습니다.경우 반환 값의 rend 배정은 reverse_iterator, 목록 개체를 수정할 수 있습니다.

rend역방향 반복기를 해당 목록의 끝에 도달 했습니다을 테스트에 사용할 수 있습니다.

반환 값 rend 역참조 해야 합니다.

예제

// 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;
}
  

요구 사항

헤더: <list>

네임 스페이스: std

참고 항목

참조

list Class

표준 템플릿 라이브러리