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


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


unordered_multiset::get_allocator()函数是C++中的STL函数,用于在程序中包含unorder_multiset头文件。该函数获取存储的分配器对象,并返回用于构造容器的分配器对象。这是一个公共成员函数。

用法:

allocator_type get_allocator() const;

在这里,allocator_type是容器使用的分配器的类型。



参数:它不接受任何参数。

返回值:它返回分配器类型。

以下示例程序旨在说明C++ STL中的get_allocator方法:

程序:

// c++ program to understand 'unordered_multiset_get_allocator' 
#include <iostream> 
#include <unordered_set> 
using namespace std; 
  
// main() method 
int main()  
{ 
      
    //'m' is object of 'unordered_set' 
    unordered_multiset<int> m; 
  
    //'allocator_type' is inherit in 'unordered_multiset' 
    //'t' is object of 'allocator_type' 
    //'get_allocator()' is member of 'unordered_set' 
    unordered_multiset<int>::allocator_type t = m.get_allocator(); 
      
    // Comparing the Allocator with 'Pair<int, int>' 
    cout << "allocator is:"
        << boolalpha << (t == allocator<std::pair<int, int> >()); 
      
    return (0); 
}
输出:
allocator is:true

复杂度:执行操作需要花费恒定的复杂度。




相关用法


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