Udostępnij za pośrednictwem


queue::value_type

Typ, który reprezentuje typ obiektu przechowywane jako element w kolejce.

typedef typename Container::value_type value_type;

Uwagi

Typ to synonim value_type podstawowego kontenera dostosowany przez kolejkę.

Przykład

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

int main( )
{
using namespace std;

   // Declares queues with default deque base container
   queue<int>::value_type AnInt;
   
   AnInt = 69;
   cout << "The value_type is AnInt = " << AnInt << endl;

   queue<int> q1;
   q1.push(AnInt);
   cout << "The element at the front of the queue is "
        << q1.front( ) << "." << endl;
}
  

Wymagania

Nagłówek: <queue>

Obszar nazw: std

Zobacz też

Informacje

queue Class

Standardowa biblioteka szablonu