map::crend
傳回處理成功最後一個項目的位置在某個反向的對應的 const Iterator。
const_reverse_iterator crend( ) const;
傳回值
解決成功最後一個項目的位置會以反轉的 map Class 的常數反向雙向 Iterator (在 unreversed map的第一個項目之前) 的位置。
備註
無效 map::end 搭配 map,crend 搭配一個反向的對應。
crend的傳回值,因此無法修改 map 物件。
crend 可用來測試反向 Iterator 是否已到達其 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