std::array::at
Aus 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. |
reference at( size_type pos ); |
(seit C++11) | |
const_reference at( size_type pos ) const; |
(seit C++11) | |
Gibt einen Verweis auf das Element an der angegebenen Stelle
pos
. Überprüfung von Grenzen durchgeführt wird, wird Ausnahme des Typs std::out_of_range ungültig am Zugang geworfen werden .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.
Inhaltsverzeichnis |