public member function
<unordered_map>

std::unordered_map::get_allocator

allocator_type get_allocator() const noexcept;
Get allocator
返回用于构造容器的分配器对象。

参数



返回值

The allocator.

成员类型allocator_typeis the type of the allocator used by the container, defined in unordered_map as an alias of its fifth template parameter (Alloc).

复杂度

常量。

迭代器有效性

没有变化。

另见