다음을 통해 공유


list::crend

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

const_reverse_iterator rend( ) const;

반환 값

상수 역방향 양방향 반복기 주소는 역방향된의 마지막 요소 뒤에 위치 list Class (첫 번째 요소 내용이 되돌릴 수는 없는에 앞에 했던 위치 list).

설명

crend반전 된 목록으로 사용 됩니다 마찬가지로 list::end 함께 사용 되는 list.

반환 값의 crend, list 개체를 수정할 수 없습니다.

crend역방향 반복기를 끝에 도달 했습니다을 테스트 하려면 사용 되는 list.

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

예제

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

int main( ) 
{
   using namespace std;
   list <int> c1;
   list <int>::const_reverse_iterator c1_crIter;

   c1.push_back( 10 );
   c1.push_back( 20 );
   c1.push_back( 30 );

   c1_crIter = c1.crend( );
   c1_crIter --;  // 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_crIter << endl;
}
  

요구 사항

헤더: <list>

네임 스페이스: std

참고 항목

참조

list Class

표준 템플릿 라이브러리