다음을 통해 공유


set::get_allocator

집합을 만드는 데 사용 되는 할당 기 개체의 복사본을 반환 합니다.

allocator_type get_allocator( ) const;

반환 값

할당자 템플릿 매개 변수는 메모리 관리에 의해 설정 사용 Allocator.

에 대 한 자세한 내용은 Allocator, 설명 절을 참조 하십시오의 set Class 항목.

설명

할당자 집합 클래스에 대 한 클래스 저장소를 관리 하는 방법을 지정 합니다.대부분의 프로그래밍 요구에 대 한 충분 한 STL 컨테이너 클래스를 제공 하는 기본 할당자입니다.작성 한 할당자 클래스를 직접 사용 하는 고급 C++ 항목입니다.

예제

// set_get_allocator.cpp
// compile with: /EHsc
#include <set>
#include <iostream>

int main( )
{
   using namespace std;
   set <int>::allocator_type s1_Alloc;
   set <int>::allocator_type s2_Alloc;
   set <double>::allocator_type s3_Alloc;
   set <int>::allocator_type s4_Alloc;

   // The following lines declare objects
   // that use the default allocator.
   set <int> s1;
   set <int, allocator<int> > s2;
   set <double, allocator<double> > s3;

   s1_Alloc = s1.get_allocator( );
   s2_Alloc = s2.get_allocator( );
   s3_Alloc = s3.get_allocator( );

   cout << "The number of integers that can be allocated"
        << endl << "before free memory is exhausted: "
        << s2.max_size( ) << "." << endl;

   cout << "\nThe number of doubles that can be allocated"
        << endl << "before free memory is exhausted: "
        << s3.max_size( ) <<  "." << endl;

   // The following line creates a set s4
   // with the allocator of multiset s1.
   set <int> s4( less<int>( ), s1_Alloc );

   s4_Alloc = s4.get_allocator( );

   // Two allocators are interchangeable if
   // storage allocated from each can be
   // deallocated by the other
   if( s1_Alloc == s4_Alloc )
   {
      cout << "\nThe allocators are interchangeable."
           << endl;
   }
   else
   {
      cout << "\nThe 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.

The allocators are interchangeable.

요구 사항

헤더: <set>

네임 스페이스: std

참고 항목

참조

set Class

표준 템플릿 라이브러리