std::vector::back
De cppreference.com
<metanoindex/>
<tbody> </tbody> reference back(); |
||
const_reference back() const; |
||
Retorna referência ao último elemento do recipiente.
Original:
Returns reference to the last element in the container.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Chamando
back em um recipiente vazio é indefinido.Original:
Calling
back on an empty container is undefined.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Parâmetros
(Nenhum)
Original:
(none)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Valor de retorno
referência para o último elemento
Original:
reference to the last element
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Complexidade
Constante
Original:
Constant
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Notas
Para uma
c recipiente, o return c.back(); expressão é equivalente a { auto tmp = c.end(); --tmp; return *tmp; }Original:
For a container
c, the expression return c.back(); is equivalent to { auto tmp = c.end(); --tmp; return *tmp; }The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Exemplo
O código a seguir usa
back para exibir o último elemento de uma std::vector<char>:
Original:
The following code uses
back to display the last element of a std::vector<char>:
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
#include <vector>
#include <iostream>
int main()
{
std::vector<char> letters {'o', 'm', 'g', 'w', 't', 'f'};
if (!letters.empty()) {
std::cout << "The last character is: " << letters.back() << '\n';
}
}
Saída:
The last character is f
