Sdílet prostřednictvím


queue::front

Vrátí odkaz na první prvek na začátek fronty.

reference front( );
const_reference front( ) const;

Vrácená hodnota

První prvek fronty.Pokud je fronta prázdná, vrácená hodnota je undefined.

Poznámky

Pokud vrácená hodnota front je přiřazen const_reference, objekt fronty nelze upravit.Pokud vrácenou hodnotu front je přiřazen referenční, lze upravit objekt fronty.

Členské funkce vrátí referenční první prvek řízené sekvence, které musí být neprázdné.

Při kompilaci s _SECURE_SCL 1, chyba runtime dojde při pokusu o přístup k prvku v prázdné fronty.Další informace naleznete v tématu Zaškrtnuté iterátory.

Příklad

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

   int& ii = q1.back( );
   int& iii = q1.front( );

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

Výsledek

The queue length is 3.
The integer at the back of queue q1 is 30.
The integer at the front of queue q1 is 10.

Požadavky

Záhlaví: <queue>

Obor názvů: std

Viz také

Referenční dokumentace

queue Class

queue Functions

Standardní šablona knihovny