std::unordered_map::at
De cppreference.com
[] |
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
<metanoindex/>
<tbody> </tbody> T& at( const Key& key ); |
(1) | (desde C++11) |
const T & at( const Key& key ) const; |
(2) | (desde C++11) |
Retorna uma referncia para o valor mapeado do elemento com chave equivalente a
key. Se tal elemento no existe, uma exceo do tipo std::out_of_range jogado.Original:
Returns a reference to the mapped value of the element with key equivalent to
key. If no such element exists, an exception of type std::out_of_range is thrown.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.
Parmetros
| key | - | a chave do elemento de encontrar
Original: the key of the element to find The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
Valor de retorno
Referncia ao valor mapeado do elemento solicitado
Original:
Reference to the mapped value of the requested 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.
Excees
std::out_of_range se o recipiente no tem um elemento com a
key especificadoOriginal:
std::out_of_range if the container does not have an element with the specified
keyThe 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
Average case: constant, worst case: linear in size.
Veja tambm
acessar o elemento especificado Original: access specified element The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (funo pblica membro) | |