public member function
<unordered_set>

std::unordered_set::get_allocator

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

参数



返回值

分配器。

成员类型allocator_type是容器使用的分配器类型,在 unordered_set 中定义为其第四个模板参数(Alloc).

复杂度

常量。

迭代器有效性

没有变化。

另见