다음을 통해 공유


basic_string::allocator_type

문자열 개체의 할당자 클래스를 나타내는 형식.

typedef Allocator allocator_type;

설명

템플릿 매개 변수에 대 한 동의어입니다 할당자.

예제

// basic_string_allocator_type.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>::allocator_type xchar = s1.get_allocator( );
   // You can now call functions on the allocator class xchar used by s1
}

요구 사항

헤더: <string>

네임 스페이스: std

참고 항목

참조

basic_string Class