hash_map::at
注意事項 |
---|
這個 API 已經過時。替代方案是 unordered_map 類別。 |
尋找一 hash_map 的項目具有指定索引鍵值。
Type& at(
const Key& _Key
);
const Type& at(
const Key& _Key
) const;
參數
參數 |
說明 |
_Key |
要尋找之項目的索引鍵值。 |
傳回值
要尋找的項目之資料值的參考。
備註
如果引數索引鍵值找不到,則函式會擲回類別 out_of_range 類別物件。
在 Visual C++ .NET 2003 中, <hash_map> 和 <hash_set> 標頭檔的成員不在 std 命名空間中,而是移至 stdext 命名空間。 如需詳細資訊,請參閱 stdext 命名空間。
範例
// 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;
}
Output
The values of the mapped elements are: 10 20 30.
需求
標頭檔: <hash_map>
**命名空間:**stdext