std::unordered_map::at
De cppreference.com
< cpp | container | unordered map
|
|
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. |
| T& at( const Key& key ); |
(1) | (ya que C + +11) |
| const T & at( const Key& key ) const; |
(2) | (ya que C + +11) |
Devuelve una referencia al valor asignado del elemento con clave equivalente a
key. Si ese elemento no existe, una excepción de tipo std::out_of_range se lanza .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.
Contenido |
[editar] Parámetros
| key | - | la clave del 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. |
[editar] Valor de retorno
La referencia al valor asignado del 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.
[editar] Excepciones
std::out_of_range si el envase no tiene un elemento con la
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.
[editar] Complejidad
Average case: constant, worst case: linear in size.
[editar] Ver también
| acceder al 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. (miembro público función) | |