multimap::crbegin

返回满足处于已撤消的 multimap 的 const 迭代器的第一个元素。

const_reverse_iterator crbegin( ) const;

返回值

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

备注

正值 开始 与 multimap一起使用时,crbegin 使用的反转 multimap。

返回值 crbegin,不能修改 multimap 对象。

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

示例

// multimap_crbegin.cpp
// compile with: /EHsc
#include <map>
#include <iostream>

int main( )
{
   using namespace std;
   multimap <int, int> m1;

   multimap <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 multimap m1 is "
        << m1_crIter -> first << "." << endl;
}
  

要求

标头: <map>

命名空间: std

请参见

参考

multimap 类

标准模板库