map::crbegin

返回解决在已撤消的映射 const 迭代器的第一个元素。

const_reverse_iterator crbegin( ) const;

返回值

解决已撤消的 map 类 的第一个元素或解决操作的常量撤消双向迭代器位于 unreversed map的最后一个元素。

备注

正值 map::begin 与 map一起使用时,crbegin 使用的反转 map。

返回值 crbegin,不能修改 map 对象

crbegin 可用来通过 map 向后循环访问。

示例

// map_crbegin.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.crbegin( );
   cout << "The first element of the reversed map m1 is "
        << m1_crIter -> first << "." << endl;
}
  

要求

标头: <map>

命名空间: std

请参见

参考

map 类

标准模板库