unordered_multiset::allocator_type
一个分配器的类型管理存储的。
typedef Alloc allocator_type;
备注
该类型是模板参数的 Alloc同义词。
示例
// std_tr1__unordered_set__unordered_multiset_allocator_type.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);
}
要求
**标题:**unordered_set
命名空间: std