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


C++ multiset get_allocator()用法及代码示例


C++ STL中的multiset::get_allocator()方法是C++ STL中的内置函数,该函数返回与多集相关联的分配器对象的副本。

用法

multiset_name.get_allocator()

其中allocator_type是容器使用的分配器的类型。


参数:该函数不带任何参数。

返回值:此方法返回用于构造容器的分配器对象。

以下示例程序旨在说明multiset::get_allocator()函数:
程序1

// CPP code to illustrate multiset::get_allocator 
  
#include <iostream> 
#include <set> 
using namespace std; 
  
int main() 
{ 
    multiset<int> mymultiset; 
    int* p; 
    unsigned int i; 
  
    // allocate an array of 5 elements 
    // using myset's allocator: 
    p = mymultiset 
            .get_allocator() 
            .allocate(5); 
  
    // assign some values to array 
    p[0] = 10; 
    p[1] = 10; 
    p[2] = 20; 
    p[3] = 30; 
    p[4] = 20; 
  
    cout << "The allocated array contains: "; 
    for (i = 0; i < 5; i++) { 
  
        cout << p[i] << " "; 
    } 
    cout << endl; 
  
    mymultiset.get_allocator().deallocate(p, 5); 
  
    return 0; 
}
输出:
The allocated array contains: 10 10 20 30 20


相关用法


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