queue::back
Restituisce un riferimento all'ultimo e l'elemento che è stato appena aggiunto posteriore della coda.
reference back( );
const_reference back( ) const;
Valore restituito
L'ultimo elemento della coda.Se la coda è vuota, il valore restituito è definito.
Note
Se il valore restituito back viene assegnato a const_reference, l'oggetto coda non può essere modificato.Se il valore restituito back viene assegnato a reference, l'oggetto coda può essere modificato.
Durante la compilazione con _SECURE_SCL 1, un errore di runtime si verifica se si tenta di accedere a un elemento in una coda vuota.Per ulteriori informazioni, vedere Iteratori verificati.
Esempio
// queue_back.cpp
// compile with: /EHsc
#include <queue>
#include <iostream>
int main( )
{
using namespace std;
queue <int> q1;
q1.push( 10 );
q1.push( 11 );
int& i = q1.back( );
const int& ii = q1.front( );
cout << "The integer at the back of queue q1 is " << i
<< "." << endl;
cout << "The integer at the front of queue q1 is " << ii
<< "." << endl;
}
Output
The integer at the back of queue q1 is 11.
The integer at the front of queue q1 is 10.
Requisiti
intestazione: <queue>
Spazio dei nomi: deviazione standard