Compartilhar via


queue::back

Retorna uma referência para o último e o elemento recém adicionado em volta da fila.

reference back( );
const_reference back( ) const;

Valor de retorno

O último elemento da fila.Se a fila está vazia, o valor de retorno é indefinido.

Comentários

Se o valor de retorno de back é atribuído a const_reference, o objeto de fila não pode ser alterado.Se o valor de retorno de back é atribuído a reference, o objeto de fila pode ser alterado.

Para compilar com _SECURE_SCL 1, um erro de tempo de execução ocorrerá se você tentar acessar um elemento em uma fila vazia.Consulte Iteradores selecionados para maiores informações.

Exemplo

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

Saída

The integer at the back of queue q1 is 11.
The integer at the front of queue q1 is 10.

Requisitos

Cabeçalho: <queue>

namespace: STD

Consulte também

Referência

queue Class

queue Functions

Standard Template Library