共用方式為


queue::push

將項目加入至佇列的背景。

void push(
   const Type& val
);

參數

  • val
    項目加入佇列的背景。

備註

佇列的背景是最近加入的項目所佔用之定位和是最後一個項目至容器結尾。

範例

// queue_push.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;

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

需求

標題: <queue>

命名空間: std

請參閱

參考

queue Class

queue Functions

標準樣板程式庫