次の方法で共有


queue::pop

キューの頭から要素を削除します。

void pop( );

解説

キューは、メンバー関数を適用する空にすることはできません。キューの先頭に、最後に追加した要素が占有する位置で、コンテナーの端に最後の要素です。

使用例

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

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

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

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

   i = q1.front( );
   cout << "The element at the front of the queue is "
        << i << "." << endl;

   q1.pop( );

   i = q1.size( );
   cout << "After a pop the queue length is " 
        << i << "." << endl;

   i = q1. front ( );
   cout << "After a pop, the element at the front of the queue is "
        << i << "." << endl;
}
  
  
  
  

必要条件

ヘッダー: <queue>

名前空間: std

参照

関連項目

queue Class

queue Functions

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