Partager via


basic_string::allocator_type

Un type qui représente la classe d'allocateur pour un objet chaîne.

typedef Allocator allocator_type;

Notes

Le type est un synonyme du paramètre de modèle Allocator.

Exemple

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

Configuration requise

En-tête : <chaîne>

Espace de noms : std

Voir aussi

Référence

basic_string, classe