共用方式為


map::at

尋找具有指定之索引鍵值的項目。

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

參數

參數

描述

_Key

要尋找的索引鍵值。

傳回值

在 中找到的項目之資料值的參考。

備註

如果找不到引數索引鍵值,則函式會擲回類別 out_of_range Class物件。

範例

// 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 Class

標準樣板程式庫