Sdílet prostřednictvím


hash_map::at

[!POZNÁMKA]

Toto rozhraní API je zastaralé.Alternativou je unordered_map Class.

Vyhledá prvek v hash_map se zadanou hodnotou klíče.

Type& at(
   const Key& _Key
);
const Type& at(
   const Key& _Key
) const;

Parametry

Parametr

Description

_Key

Hodnota klíče prvku, který je nalezen.

Vrácená hodnota

Odkaz na hodnotu dat prvku nalezen.

Poznámky

Pokud argument hodnota není nalezen, pak vyvolá funkci objekt třídy out_of_range Class.

V aplikaci Visual C++ .NET 2003, členové <hash_map> a <hash_set> jsou již v oboru názvů std soubory hlaviček, ale spíše být přesunut do oboru názvů stdext.Viz stdext obor názvů Další informace.

Příklad

// hash_map_at.cpp
// compile with: /EHsc
#include <hash_map>
#include <iostream>

int main( )
{
   using namespace std;
   using namespace stdext;
   typedef pair <const int, int> cInt2Int;
   hash_map <int, int> hm1;
   
   // Insert data values
   hm1.insert ( cInt2Int ( 1, 10 ) );
   hm1.insert ( cInt2Int ( 2, 20 ) );
   hm1.insert ( cInt2Int ( 3, 30 ) );

   cout  << "The values of the mapped elements are:";
   for ( int i = 1 ; i <= hm1.size() ; i++ )
      cout << " " << hm1.at(i);
   cout << "." << endl;
}

Výsledek

The values of the mapped elements are: 10 20 30.

Požadavky

Záhlaví: <hash_map>

Obor názvů: stdext

Viz také

Referenční dokumentace

hash_map Class

Standardní šablona knihovny