次の方法で共有


queue::back

キューの [戻る] で最後の参照や最近追加された要素を返します。

reference back( );
const_reference back( ) const;

戻り値

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

解説

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

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

使用例

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

int main( ) 
{
   using namespace std;
   queue <int> q1;
   
   q1.push( 10 );
   q1.push( 11 );

   int& i = q1.back( );
   const int& ii = q1.front( );

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

出力

The integer at the back of queue q1 is 11.
The integer at the front of queue q1 is 10.

必要条件

ヘッダー: <queue>

名前空間: std

参照

関連項目

queue Class

queue Functions

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