std::map::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. |
| T& at( const Key& key ); |
(1) | (seit C++11) |
| const T & at( const Key& key ) const; |
(2) | (seit C++11) |
Gibt einen Verweis auf das zugeordnete Wert des Elements mit der Taste entspricht
key. Wenn kein solches Element vorhanden ist, wird eine Ausnahme vom Typ std::out_of_range geworfen .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.
Inhaltsverzeichnis |
[Bearbeiten] Parameter
| key | - | der Schlüssel des Elements zu finden
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. |
[Bearbeiten] Rückgabewert
Der Verweis auf das zugeordnete Wert des angeforderten Elements
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.
[Bearbeiten] Ausnahmen
std::out_of_range wenn der Behälter nicht über ein Element mit dem angegebenen
keyOriginal:
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.
[Bearbeiten] Komplexität
Logarithmic in the size of the container.
[Bearbeiten] Siehe auch
| Zugriff auf angegebene Element 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. (öffentliche Elementfunktion) | |

