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