multiset::get_allocator
복수 집합을 만드는 데 사용 되는 할당 기 개체의 복사본을 반환 합니다.
allocator_type get_allocator( ) const;
반환 값
할당자 multiset 여는 데 사용 합니다.
설명
할당자 multiset 클래스에 대 한 클래스 저장소를 관리 하는 방법을 지정 합니다.대부분의 프로그래밍 요구에 대 한 충분 한 STL 컨테이너 클래스를 제공 하는 기본 할당자입니다.작성 한 할당자 클래스를 직접 사용 하는 고급 C++ 항목입니다.
예제
// multiset_get_allocator.cpp
// compile with: /EHsc
#include <set>
#include <iostream>
int main( )
{
using namespace std;
multiset <int>::allocator_type ms1_Alloc;
multiset <int>::allocator_type ms2_Alloc;
multiset <double>::allocator_type ms3_Alloc;
multiset <int>::allocator_type ms4_Alloc;
// The following lines declare objects
// that use the default allocator.
multiset <int> ms1;
multiset <int, allocator<int> > ms2;
multiset <double, allocator<double> > ms3;
cout << "The number of integers that can be allocated"
<< endl << "before free memory is exhausted: "
<< ms2.max_size( ) << "." << endl;
cout << "The number of doubles that can be allocated"
<< endl << "before free memory is exhausted: "
<< ms3.max_size( ) << "." << endl;
// The following lines create a multiset ms4
// with the allocator of multiset ms1
ms1_Alloc = ms1.get_allocator( );
multiset <int> ms4( less<int>( ), ms1_Alloc );
ms4_Alloc = ms4.get_allocator( );
// Two allocators are interchangeable if
// storage allocated from each can be
// deallocated with the other
if( ms1_Alloc == ms4_Alloc )
{
cout << "Allocators are interchangeable."
<< endl;
}
else
{
cout << "Allocators are not interchangeable."
<< endl;
}
}
샘플 출력
다음 출력에 대 한 x 86입니다.
The number of integers that can be allocated
before free memory is exhausted: 1073741823.
The number of doubles that can be allocated
before free memory is exhausted: 536870911.
Allocators are interchangeable.
요구 사항
헤더: <set>
네임 스페이스: std