<metanoindex/>
<tbody> </tbody> reference at( size_type pos ); |
(depuis C++11) | |
const_reference at( size_type pos ) const; |
(depuis C++11) | |
Renvoie une référence à l'élément à
pos emplacement spécifié. La vérification des limites est effectué, sauf std::out_of_range type sera jeté sur l'accès invalide .Original:
Returns a reference to the element at specified location
pos. Bounds checking is performed, exception of type std::out_of_range will be thrown on invalid access.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.
Paramètres
| pos | - | position de l'élément de retour
Original: position of the element to return 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
une référence à l'élément souhaité
Original:
reference to 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.
Exceptions
std::out_of_range if !(pos < size()).
Complexité
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.
Voir aussi
| accède à l'élément spécifié (fonction membre publique) | |