다음을 통해 공유


basic_string::get_allocator

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

allocator_type get_allocator( ) const;

반환 값

문자열에서 사용 된 할당자입니다.

설명

멤버 함수 저장된 할당 기 개체를 반환합니다.

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

예제

// basic_string_get_allocator.cpp
// compile with: /EHsc
#include <string>
#include <iostream>

int main( ) 
{
   using namespace std;
   // The following lines declare objects
   // that use the default allocator.
   string s1;
   basic_string <char> s2;
   basic_string <char, char_traits< char >, allocator< char > > s3;

   // s4 will use the same allocator class as s1
   basic_string <char> s4( s1.get_allocator ( ) );

   basic_string <char>::allocator_type xchar = s1.get_allocator( );
   // You can now call functions on the allocator class xchar used by s1
}

요구 사항

헤더: <string>

네임 스페이스: std

참고 항목

참조

basic_string Class