C++ 映射库 - get_allocator() 函数



描述

C++ 函数std::map::get_allocator() 返回与 map 关联的分配器。

声明

以下是来自 std::map 头文件的 std::map::get_allocator() 函数声明。

C++98

allocator_type get_allocator() const;

C++11

allocator_type get_allocator() const noexcept;

参数

返回值

返回与 map 关联的分配器。

异常

此成员函数从不抛出异常。

时间复杂度

常数,即 O(1)

示例

以下示例演示了 std::map::get_allocator() 函数的用法。

#include <iostream>
#include <map>

using namespace std;

int main(void) {
   map<char, int> m;
   pair<const char, int> *p;

   p = m.get_allocator().allocate(5);

   cout << "Allocated size = " <<  sizeof(*p) * 5 << endl;

   return 0;
}

让我们编译并运行上面的程序,这将产生以下结果:

Allocated size = 40
map.htm
广告