list::front
リストの最初の要素への参照を返します。
reference front( );
const_reference front( ) const;
戻り値
リストが空の場合、戻り値は未定義です。
解説
front の戻り値が const_referenceに割り当てられている場合、リスト オブジェクトは変更できません。front の戻り値が referenceに割り当てられている場合、リスト オブジェクトは変更できます。
_SECURE_SCL 1 でコンパイルする場合は、ランタイム エラーは空のリストの要素にアクセスしようとすると発生します。詳細については、「チェックを行う反復子」を参照してください。
使用例
// list_front.cpp
// compile with: /EHsc
#include <list>
#include <iostream>
int main() {
using namespace std;
list <int> c1;
c1.push_back( 10 );
int& i = c1.front();
const int& ii = c1.front();
cout << "The first integer of c1 is " << i << endl;
i++;
cout << "The first integer of c1 is " << ii << endl;
}
必要条件
ヘッダー: <list>
名前空間: std