unordered_set::allocator_type
O tipo de um distribuidor para gerenciar o armazenamento.
typedef Alloc allocator_type;
Comentários
O tipo é um sinônimo para o parâmetro Allocdo modelo.
Exemplo
// std_tr1__unordered_set__unordered_set_allocator_type.cpp
// compile with: /EHsc
#include <unordered_set>
#include <iostream>
typedef std::unordered_set<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);
}
Requisitos
unordered_set <deCabeçalho: >
Namespace: std