hash_multimap::begin
[!참고]
이 API는 사용되지 않습니다.대신 unordered_multimap Class.
Hash_multimap의 첫 번째 요소를 가리키는 반복기를 반환 합니다.
const_iterator begin( ) const;
iterator begin( );
반환 값
주소는 hash_multimap 또는 빈 hash_multimap은 다음에 나오는 위치에서 첫 번째 요소는 양방향 반복기입니다.
설명
경우의 반환 값 시작 배정은 const_iterator, hash_multimap 개체의 요소를 수정할 수 없습니다.경우의 반환 값 시작 배정은 반복기, hash_multimap 개체의 요소를 수정할 수 있습니다.
Visual C++.NET 2003 멤버는 <hash_map> 및 <hash_set> 헤더 파일이 더 이상 std 네임 스페이스에 있지만 오히려 stdext 네임 스페이스로 이동 되었습니다.자세한 내용은 stdext 네임스페이스를 참조하십시오.
예제
// hash_multimap_begin.cpp
// compile with: /EHsc
#include <hash_map>
#include <iostream>
int main( )
{
using namespace std;
using namespace stdext;
hash_multimap <int, int> hm1;
hash_multimap <int, int> :: iterator hm1_Iter;
hash_multimap <int, int> :: const_iterator hm1_cIter;
typedef pair <int, int> Int_Pair;
hm1.insert ( Int_Pair ( 0, 0 ) );
hm1.insert ( Int_Pair ( 1, 1 ) );
hm1.insert ( Int_Pair ( 2, 4 ) );
hm1_cIter = hm1.begin ( );
cout << "The first element of hm1 is " << hm1_cIter -> first
<< "." << endl;
hm1_Iter = hm1.begin ( );
hm1.erase ( hm1_Iter );
// The following 2 lines would err because the iterator is const
// hm1_cIter = hm1.begin ( );
// hm1.erase ( hm1_cIter );
hm1_cIter = hm1.begin( );
cout << "The first element of hm1 is now " << hm1_cIter -> first
<< "." << endl;
}
요구 사항
헤더: <hash_map>
네임 스페이스: stdext