Freigeben über


basic_string::allocator_type

Ein Typ, der die allocator-Klasse für ein Zeichenfolgenobjekt darstellt.

typedef Allocator allocator_type;

Hinweise

Der Typ ist ein Synonym für den Vorlagenparameter Allocator.

Beispiel

// 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
}

Anforderungen

Header: <Zeichenfolge>

Namespace: std

Siehe auch

Referenz

basic_string-Klasse