Namensräume
Varianten

std::unordered_map::at

Aus cppreference.com
 
 
 
std::unordered_map
Member-Funktionen
Original:
Member functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
unordered_map::unordered_map
unordered_map::~unordered_map
unordered_map::operator=
unordered_map::get_allocator
Iteratoren
Original:
Iterators
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
unordered_map::begin
unordered_map::cbegin
unordered_map::end
unordered_map::cend
Kapazität
Original:
Capacity
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
unordered_map::erase
unordered_map::size
unordered_map::max_size
Modifiers
Original:
Modifiers
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
unordered_map::clear
unordered_map::insert
unordered_map::emplace
unordered_map::emplace_hint
unordered_map::erase
unordered_map::swap
Lookup
Original:
Lookup
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
unordered_map::count
unordered_map::find
unordered_map::equal_range
Eimer Schnittstelle
Original:
Bucket interface
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
unordered_map::begin2
unordered_map::end2
unordered_map::bucket_count
unordered_map::max_bucket_count
unordered_map::bucket_size
unordered_map::bucket
Hash Politik
Original:
Hash policy
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
unordered_map::load_factor
unordered_map::max_load_factor
unordered_map::rehash
unordered_map::reserve
Beobachter
Original:
Observers
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
unordered_map::hash_function
unordered_map::key_eq
 
T& at(const Key& key );
(1) (seit C++11)
const T & at(const Key& key )const;
(2) (seit C++11)

Gibt einen Verweis auf den Wert des Elements zurück, das dem Schlüssel key zugeordnet ist. Wenn kein solches Element vorhanden ist, wird eine Ausnahme vom Typ std::out_of_range geworfen.

Inhaltsverzeichnis

[Bearbeiten]Parameter

key - der Schlüssel des zu findenden Elements

[Bearbeiten]Rückgabewert

Der Verweis auf den Wert des angeforderten Elements

[Bearbeiten]Ausnahmen

std::out_of_range wenn der Behälter kein Element mit dem angegebenen key enthält

[Bearbeiten]Komplexität

Durchschnittlicher Fall: konstant, schlechtester Fall: linear mit der Größe.

[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)[edit]
close