İngilizce dilinde oku

Aracılığıyla paylaş


queue::push

Sıra arkaya bir öğe ekler.

void push(
   const Type& val
);

Parametreler

  • val
    Sıra arkaya eklenen öğe.

Notlar

Arka sıranın en son eklenen öğe tarafından bulunulan konum ve konteyner sonundaki son öğe.

Örnek

// 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;
}
  
  

Gereksinimler

Başlık: <queue>

Namespace: std

Ayrıca bkz.

Başvuru

queue Class

queue Functions

Standart Şablon Kütüphanesi