unordered_multiset::get_allocator
Obtient l'objet d'allocation stocké.
Alloc get_allocator() const;
Notes
La fonction membre retourne l'objet d'allocation stocké.
Exemple
// std_tr1__unordered_set__unordered_multiset_get_allocator.cpp
// compile with: /EHsc
#include <unordered_set>
#include <iostream>
typedef std::unordered_multiset<char> Myset;
typedef std::allocator<std::pair<const char, int> > Myalloc;
int main()
{
Myset c1;
Myset::allocator_type al = c1.get_allocator();
std::cout << "al == std::allocator() is "
<< std::boolalpha << (al == Myalloc()) << std::endl;
return (0);
}
Configuration requise
Header: <unordered_set>
Espace de noms : std