当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ unordered_map get_allocator用法及代码示例


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

Allocator_type get_allocator()

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

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



// CPP program to illustrate 
// unordered_map get_allocator() 
#include <bits/stdc++.h> 
using namespace std; 
  
int main() 
{ 
  
    //'ump' is object of 'unordered_ump' 
    unordered_map<int, int> ump; 
  
    //'allocator_type' is inherit in 'unordered_map' 
    //'u' is object of 'allocator_type' 
    unordered_map<int, int>::allocator_type u = ump.get_allocator(); 
  
    // Comparing the Allocator with Pair<int, int> 
    cout << "Is allocator Pair<int, int>:"
         << boolalpha 
         << (u == allocator<pair<int, int> >()); 
  
    return 0; 
}
输出:
Is allocator Pair:true

示例2:

// CPP program to illustrate 
// unordered_map get_allocator() 
#include <bits/stdc++.h> 
using namespace std; 
  
int main(void) 
{ 
    unordered_map<char, int> um; 
    pair<const char, int>* a; 
  
    a = um.get_allocator().allocate(8); 
  
    cout << "Allocated size = " << sizeof(*a) * 8 << endl; 
  
    return 0; 
}
输出:
Allocated size = 64



相关用法


注:本文由纯净天空筛选整理自ankit15697大神的英文原创作品 unordered_map get_allocator in C++ STL。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。