hash_multimap::hash_multimap
[!참고]
이 API는 사용되지 않습니다.대신 unordered_multimap Class.
생성 한 hash_multimap는 값이 비어 있거나 모든 복사본 또는 일부 다른 hash_multimap의 일부입니다.
hash_multimap( );
explicit hash_multimap(
const Compare& _Comp
);
hash_multimap(
const Compare& _Comp,
const Allocator& _Al
);
hash_multimap(
const hash_multimap& _Right
);
template<class InputIterator>
hash_multimap(
InputIterator _First,
InputIterator _Last
);
template<class InputIterator>
hash_multimap(
InputIterator _First,
InputIterator _Last,
const Compare& _Comp
);
template<class InputIterator>
hash_multimap(
InputIterator _First,
InputIterator _Last,
const Compare& _Comp,
const Allocator& _Al
);
hash_multimap(
hash_multimap&& _Right
);
매개 변수
Parameter |
설명 |
_Al |
기본적으로 하이 hash_multimap 개체에 사용할 저장소 할당자 클래스 할당자. |
_Comp |
종류의 비교 함수 const성분 기본 구조에서 요소를 주문 하는 데 성분. |
_Right |
지도 중 어느 복사본으로 구성 된 집합입니다. |
_First |
복사할 요소의 범위에 있는 첫 번째 요소의 위치입니다. |
_Last |
복사할 요소의 범위를 벗어난 첫 번째 요소의 위치입니다. |
설명
모든 생성자는 메모리 스토리지는 hash_multimap에 대 한 관리 및 나중에 반환할 호출 하 여 할당 기 개체 유형을 저장할 get_allocator.할당자 매개 변수는 클래스 선언 및 전처리 매크로 대체 할당자를 대체 하는 데에 자주 생략 됩니다.
해당 hash_multimap 모든 생성자를 초기화합니다.
모든 생성자 함수 개체 형식의 저장소 성분 순서는 hash_multimap의 키 들을 설정 하는 데 사용 하 고 나중에 반환할 호출 하 여 key_comp.
처음 세 명의 생성자가 빈 초기 hash_multimap, 두 번째 지정 유형 비교 함수가 지정 (_Comp) 요소 및 세 번째 순서를 설정 하는 데 사용할 할당자를 지정 하는 명시적으로 입력 (_Al) 데.키워드 명시적 자동 형식 변환을 특정 종류를 표시 하지 않습니다.
네 번째 생성자는 hash_multimap의 사본을 지정 _Right.
범위는 다음 세 가지 생성자 복사 [_First, _Last)의 증가 비교 함수 클래스의 형식을 지정 하는 명시적인 지도 성분 한 할당자.
마지막 생성기는 hash_multimap 이동 하 _Right.
Visual C++.NET 2003 멤버는 <hash_map> 및 <hash_set> 헤더 파일이 더 이상 std 네임 스페이스에 있지만 오히려 stdext 네임 스페이스로 이동 되었습니다.자세한 내용은 stdext 네임스페이스를 참조하십시오.
예제
// hash_multimap_hash_multimap.cpp
// compile with: /EHsc
#include <hash_map>
#include <iostream>
int main( )
{
using namespace std;
using namespace stdext;
typedef pair <int, int> Int_Pair;
hash_multimap <int, int>::iterator hm1_Iter, hm3_Iter, hm4_Iter,
hm5_Iter, hm6_Iter;
hash_multimap <int, int, hash_compare <int, greater<int> >
>::iterator hm2_Iter;
// Create an empty hash_multimap hm0 of key type integer
hash_multimap <int, int> hm0;
// Create an empty hash_multimap hm1 with the key comparison
// function of less than, then insert 4 elements
hash_multimap <int, int, hash_compare <int, less<int> > > hm1;
hm1.insert( Int_Pair( 1, 10 ) );
hm1.insert( Int_Pair( 2, 20 ) );
hm1.insert( Int_Pair( 3, 30 ) );
hm1.insert( Int_Pair( 4, 40 ) );
// Create an empty hash_multimap hm2 with the key comparison
// function of greater than, then insert 2 elements
hash_multimap <int, int, hash_compare <int, greater<int> > > hm2;
hm2.insert( Int_Pair( 1, 10 ) );
hm2.insert( Int_Pair( 2, 20 ) );
// Create a hash_multimap hm3 with the
// allocator of hash_multimap hm1
hash_multimap <int, int>::allocator_type hm1_Alloc;
hm1_Alloc = hm1.get_allocator( );
hash_multimap <int, int> hm3( hash_compare <int, less<int> > ( ),
hm1_Alloc );
hm3.insert( Int_Pair( 3, 30 ) );
// Create a copy, hash_multimap hm4, of hash_multimap hm1
hash_multimap <int, int> hm4( hm1 );
// Create a hash_multimap hm5 by copying the range hm1[_First, _Last)
hash_multimap <int, int>::const_iterator hm1_bcIter, hm1_ecIter;
hm1_bcIter = hm1.begin( );
hm1_ecIter = hm1.begin( );
hm1_ecIter++;
hm1_ecIter++;
hash_multimap <int, int> hm5( hm1_bcIter, hm1_ecIter );
// Create a hash_multimap hm6 by copying the range hm4[_First, _Last)
// and with the allocator of hash_multimap hm2
hash_multimap <int, int>::allocator_type hm2_Alloc;
hm2_Alloc = hm2.get_allocator( );
hash_multimap <int, int> hm6(hm4.begin( ), ++hm4.begin( ), less<int>( ),
hm2_Alloc);
cout << "hm1 = ";
for ( hm1_Iter = hm1.begin( ); hm1_Iter != hm1.end( ); hm1_Iter++ )
cout << hm1_Iter -> second << " ";
cout << endl;
cout << "hm2 = ";
for ( hm2_Iter = hm2.begin( ); hm2_Iter != hm2.end( ); hm2_Iter++ )
cout << hm2_Iter -> second << " ";
cout << endl;
cout << "hm3 = ";
for ( hm3_Iter = hm3.begin( ); hm3_Iter != hm3.end( ); hm3_Iter++ )
cout << hm3_Iter -> second << " ";
cout << endl;
cout << "hm4 = ";
for ( hm4_Iter = hm4.begin( ); hm4_Iter != hm4.end( ); hm4_Iter++ )
cout << hm4_Iter -> second << " ";
cout << endl;
cout << "hm5 = ";
for ( hm5_Iter = hm5.begin( ); hm5_Iter != hm5.end( ); hm5_Iter++ )
cout << hm5_Iter -> second << " ";
cout << endl;
cout << "hm6 = ";
for ( hm6_Iter = hm6.begin( ); hm6_Iter != hm6.end( ); hm6_Iter++ )
cout << hm6_Iter -> second << " ";
cout << endl;
// Create a copy, hash_map hm7, of hash_multimap hm1 by moving
hash_map<MyStr, MyInt, hash_compare<MyStr, less_str> >
hm7(move(hm1));
cout << "hm7 =";
for (hm7_Iter = hm7.begin(); hm7_Iter != hm7.end(); hm7_Iter++)
cout << " " << hm7_Iter -> second;
cout << endl;
}
Output
hm1 = 10 20 30 40
hm2 = 10 20
hm3 = 30
hm4 = 10 20 30 40
hm5 = 10 20
hm6 = 10
hm7 = 10 20 30 40
요구 사항
헤더: <hash_map>
네임 스페이스: stdext