📜  在C++ STL中映射get_allocator

📅  最后修改于: 2021-05-30 04:08:20             🧑  作者: Mango

map :: get_allocator()是C++ STL中的内置函数,用于获取容器映射的分配器。
句法:

Allocator_type get_allocator()

参数:该函数不接受任何参数。
返回值:返回与map关联的分配器。

下面的程序清楚地解释了map :: get_allocator()函数。
示例1:

// CPP program to illustrate
// map get_allocator()
#include 
using namespace std;
int main()
{
  
    //'mp' is object of 'map'
    map mp;
  
    //'allocator_type' is inherit in 'map'
    //'m' is object of 'allocator_type'
    map::allocator_type m = mp.get_allocator();
  
    // Comparing the Allocator with Pair
    cout << "Is allocator Pair : "
         << boolalpha
         << (m == allocator >());
  
    return 0;
}
输出:
Is allocator Pair : true

示例2:

// CPP program to illustrate
// map get_allocator()
#include 
using namespace std;
  
int main(void)
{
    map m;
    pair* a;
  
    a = m.get_allocator().allocate(8);
  
    cout << "Allocated size = " << sizeof(*a) * 8 << endl;
  
    return 0;
}
输出:
Allocated size = 64
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程”