Condividi tramite


unordered_map::allocator_type

Il tipo di allocatore per gestire l'archiviazione.

typedef Alloc allocator_type;

Note

Il tipo è sinonimo del parametro di template Alloc.

Esempio

 

// std_tr1__unordered_map__unordered_map_allocator_type.cpp 
// compile with: /EHsc 
#include <unordered_map> 
#include <iostream> 
 
typedef std::unordered_map<char, int> Mymap; 
typedef std::allocator<std::pair<const char, int> > Myalloc; 
int main() 
    { 
    Mymap c1; 
 
    Mymap::allocator_type al = c1.get_allocator(); 
    std::cout << "al == std::allocator() is " 
        << std::boolalpha << (al == Myalloc()) << std::endl; 
 
    return (0); 
    } 
 
  

Requisiti

intestazione: <unordered_map>

Spazio dei nomi: deviazione standard

Vedere anche

Riferimenti

<unordered_map>

unordered_map Class

Altre risorse

<unordered_map> membri