◐ Shell
clean mode source ↗

std::unordered_map::at — cppreference.com

De cppreference.com

<metanoindex/>

<tbody> </tbody>

T& at( const Key& key );

(1) (depuis C++11)

const T & at( const Key& key ) const;

(2) (depuis C++11)

Renvoie une référence à la valeur de l'élément mappé avec clé équivalente à key. Si aucun élément n'existe, une exception de type est jeté std::out_of_range .

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.

Paramètres

key -

la clé de l'élément à trouver

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.

Retourne la valeur

La référence à la valeur de l'élément mappé demandée

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.

Exceptions

std::out_of_range si le récipient ne possède pas un élément avec la key spécifié

Original:

std::out_of_range if the container does not have an element with the specified key

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Complexité

Average case: constant, worst case: linear in size.

Voir aussi