hash_map::at
[!UWAGA]
Ten interfejs API jest nieaktualny.Alternatywą jest unordered_map Class.
Wyszukuje element w hash_map o określonej wartości klucza.
Type& at(
const Key& _Key
);
const Type& at(
const Key& _Key
) const;
Parametry
Parametr |
Opis |
_Key |
Wartość klucza element, który ma się znaleźć. |
Wartość zwracana
Odwołanie do wartości danych, można odnaleźć elementu.
Uwagi
Jeśli argument wartość klucza nie zostanie znaleziony, a następnie funkcja generuje obiekt klasy out_of_range Class.
W Visual C++ .NET 2003, członkowie <hash_map> i <hash_set> pliki nagłówkowe są już w przestrzeni nazw std, ale raczej zostały przeniesione do obszaru nazw stdext.Zobacz stdext nazw uzyskać więcej informacji.
Przykład
// 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;
}
Dane wyjściowe
The values of the mapped elements are: 10 20 30.
Wymagania
Nagłówek: <hash_map>
Przestrzeń nazw: stdext