map::cbegin
傳回處理常數的Iterator地圖上的第一個項目。
const_iterator cbegin( ) const;
傳回值
解決const的雙向Iterator順利空白 map的 map Class 的第一個項目或位置。
註解
cbegin的傳回值,不能修改在 map 物件的項目。
範例
// map_cbegin.cpp
// compile with: /EHsc
#include <map>
#include <iostream>
int main( )
{
using namespace std;
map <int, int> m1;
map <int, int> :: const_iterator m1_cIter;
typedef pair <int, int> Int_Pair;
m1.insert ( Int_Pair ( 0, 0 ) );
m1.insert ( Int_Pair ( 1, 1 ) );
m1.insert ( Int_Pair ( 2, 4 ) );
m1_cIter = m1.cbegin ( );
cout << "The first element of m1 is " << m1_cIter -> first << endl;
}
需求
標題: <map>
命名空間: std