map::crend

返回最后一个元素成功解决的位置处于已撤消的映射 const 迭代器。

const_reverse_iterator crend( ) const;

返回值

最后一个元素成功解决的位置反转的 map 类 的 const 撤消双向迭代器 (在前面 unreversed map的第一个元素) 的位置。

备注

正值 map::end 使用 map,则使用crend 的反转映射。

返回值 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

请参见

参考

map 类

标准模板库