共用方式為


map::crbegin

傳回處理常數的 Iterator 在一個反向的對應的第一個項目。

const_reverse_iterator crbegin( ) const;

傳回值

解決常數反向雙向 Iterator 的解決反向的 map Class 的第一個項目或功能在 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 Class

標準樣板程式庫