hash_map::at
[!참고]
이 API는 사용되지 않습니다.대신 unordered_map Class.
Hash_map에 지정 된 키 값을 가진 요소를 찾습니다.
Type& at(
const Key& _Key
);
const Type& at(
const Key& _Key
) const;
매개 변수
Parameter |
설명 |
_Key |
찾을 요소의 키 값입니다. |
반환 값
찾은 요소의 데이터 값에 대 한 참조입니다.
설명
인수 키 값을 찾을 수 없습니다, 다음 함수는 클래스 개체를 throw 하면 out_of_range Class.
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