unordered_map::get_allocator
获得存储区分配程序的对象。
Alloc get_allocator() const;
备注
成员函数返回存储的程序分配对象。
示例
// 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);
}
要求
标头: <unordered_map>
命名空间: std