Freigeben über


unordered_map::get_allocator

Ruft das gespeicherte Zuweisungsobjekt ab.

Alloc get_allocator() const;

Hinweise

Die Memberfunktion gibt dem gespeicherten Zuweisungsobjekt zurück.

Beispiel

 

// std_tr1__unordered_map__unordered_map_get_allocator.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); 
    } 
 
  

Anforderungen

Header: <unordered_map>

Namespace: std

Siehe auch

Referenz

<unordered_map>

unordered_map-Klasse

Weitere Ressourcen

<unordered_map> Member