次の方法で共有


queue::front

キューの先頭で最初の要素への参照を返します。

reference front( );
const_reference front( ) const;

戻り値

キュー内の最初の要素。キューが空の場合、戻り値は未定義です。

解説

front の戻り値が const_referenceに割り当てられている場合、キュー オブジェクトは変更できません。front の戻り値が referenceに割り当てられている場合、キュー オブジェクトを変更することができます。

このメンバー関数は、が空でない必要があります。被制御シーケンスの最初の要素に reference を返します。

_SECURE_SCL 1 でコンパイルする場合は、ランタイム エラーは空のキュー内の要素にアクセスしようとすると発生します。詳細については、「チェックを行う反復子」を参照してください。

使用例

// queue_front.cpp
// compile with: /EHsc
#include <queue>
#include <iostream>

int main() {
   using namespace std;
   queue <int> q1;

   q1.push( 10 );
   q1.push( 20 );
   q1.push( 30 );

   queue <int>::size_type i;
   i = q1.size( );
   cout << "The queue length is " << i << "." << endl;

   int& ii = q1.back( );
   int& iii = q1.front( );

   cout << "The integer at the back of queue q1 is " << ii 
        << "." << endl;
   cout << "The integer at the front of queue q1 is " << iii 
        << "." << endl;
}

出力

The queue length is 3.
The integer at the back of queue q1 is 30.
The integer at the front of queue q1 is 10.

必要条件

ヘッダー: <queue>

名前空間: std

参照

関連項目

queue Class

queue Functions

標準テンプレート ライブラリ