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