unordered_map::allocator_type
管理儲存體的配置器類型。
typedef Alloc allocator_type;
備註
這個型別是樣板參數 Alloc的同義字。
範例
// 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);
}
需求
標頭: <unordered_map>
命名空間: std