list::cbegin
リストの最初の要素を指す定数反復子を返します。
const_iterator cbegin( ) const;
戻り値
list Class のまたは空の listが成功する場所への最初の要素を指す定数の双方向反復子。
解説
cbeginの戻り値を使用して、list のオブジェクト要素を変更できません。
使用例
// list_cbegin.cpp
// compile with: /EHsc
#include <list>
#include <iostream>
int main( )
{
using namespace std;
list <int> c1;
list <int>::const_iterator c1_cIter;
c1.push_back( 1 );
c1.push_back( 2 );
c1_cIter = c1.cbegin( );
cout << "The first element of c1 is " << *c1_cIter << endl;
}
出力
The first element of c1 is 1
必要条件
ヘッダー: <list>
名前空間: std