map::at
Znajduje element określonej wartości klucza.
Type& at(
const Key& _Key
);
const Type& at(
const Key& _Key
) const;
Parametry
Parametr |
Opis |
_Key |
Wartość klucza, aby znaleźć. |
Wartość zwracana
Odwołanie do elementu znaleziono wartość danych.
Uwagi
Jeśli nie znaleziono argumentu wartości klucza, a następnie funkcja generuje obiekt klasy out_of_range Class.
Przykład
// map_at.cpp
// compile with: /EHsc
#include <map>
#include <iostream>
typedef std::map<char, int> Mymap;
int main()
{
Mymap c1;
c1.insert(Mymap::value_type('a', 1));
c1.insert(Mymap::value_type('b', 2));
c1.insert(Mymap::value_type('c', 3));
// find and show elements
std::cout << "c1.at('a') == " << c1.at('a') << std::endl;
std::cout << "c1.at('b') == " << c1.at('b') << std::endl;
std::cout << "c1.at('c') == " << c1.at('c') << std::endl;
return (0);
}
Dane wyjściowe
c1.at('a') == 1
c1.at('b') == 2
c1.at('c') == 3
Wymagania
Nagłówek: <map>
Obszar nazw: std