map::crend
반전 된 맵의 마지막 요소 뒤에 위치 주소는 const 반복기를 반환 합니다.
const_reverse_iterator crend( ) const;
반환 값
상수 역방향 양방향 반복기 주소는 역방향된의 마지막 요소 뒤에 위치 map Class (첫 번째 요소 내용이 되돌릴 수는 없는에 앞에 했던 위치 map).
설명
crend반전 된 지도를 사용으로 map::end 함께 사용 되는 map.
반환 값의 crend, map 개체를 수정할 수 없습니다.
crend역방향 반복기를 끝에 도달 했습니다을 테스트 하려면 사용 되는 map.
반환 값 crend 역참조 해야 합니다.
예제
// map_crend.cpp
// compile with: /EHsc
#include <map>
#include <iostream>
int main( )
{
using namespace std;
map <int, int> m1;
map <int, int> :: const_reverse_iterator m1_crIter;
typedef pair <int, int> Int_Pair;
m1.insert ( Int_Pair ( 1, 10 ) );
m1.insert ( Int_Pair ( 2, 20 ) );
m1.insert ( Int_Pair ( 3, 30 ) );
m1_crIter = m1.crend( );
m1_crIter--;
cout << "The last element of the reversed map m1 is "
<< m1_crIter -> first << "." << endl;
}
요구 사항
헤더: <map>
네임 스페이스: std