map::at

查找具有指定键值的元素。

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

参数

参数

说明

_Key

要查找的键值。

返回值

与找到的元素数据值的引用。

备注

如果关键参数未找到值,则该函数引发类对象。out_of_range 类

示例

// 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); 
    } 

Output

c1.at('a') == 1
c1.at('b') == 2
c1.at('c') == 3

要求

标头: <map>

命名空间: std

请参见

参考

map 类

标准模板库