Compartilhar via


vector::front

Retorna uma referência para o primeiro elemento em um vetor.

reference front( ); 
const_reference front( ) const;

Valor de retorno

Uma referência para o primeiro elemento no objeto do vetor.Se o vetor estiver vazia, o retorno é indefinido.

Comentários

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

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

Exemplo

// vector_front.cpp
// compile with: /EHsc
#include <vector>
#include <iostream>

int main( )
{
   using namespace std;   
   vector <int> v1;
   
   v1.push_back( 10 );
   v1.push_back( 11 );

   int& i = v1.front( );
   const int& ii = v1.front( );

   cout << "The first integer of v1 is "<< i << endl;
   // by incrementing i, we move the the front reference to the second element
   i++;
   cout << "Now, the first integer of v1 is "<< i << endl;
}

Saída

The first integer of v1 is 10
Now, the first integer of v1 is 11

Requisitos

Cabeçalho: <vector>

namespace: STD

Consulte também

Referência

vector Class

vector::front e vector::back

Standard Template Library