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


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


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

Allocator_type get_allocator()

参数:该函数不接受任何参数。
返回值:返回与双端队列相关的分配器。

以下示例程序旨在说明deque::get_allocator()函数的工作。示例1:



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

示例2:

// CPP program to illustrate 
// deque get_allocator() 
#include <bits/stdc++.h> 
using namespace std; 
  
int main(void) 
{ 
  
    // Creating a container of type deque 
    deque<int> de; 
  
    // creating a pointer of type int 
    int* array; 
  
    // creating array using mylist get_allocator 
    array = de.get_allocator().allocate(3); 
  
    // inserting some data into array 
    for (int i = 0; i < 3; i++) 
        array[i] = i; 
  
    // printing details of array 
    for (int i = 0; i < 3; i++) 
        cout << array[i] << " "; 
  
    return 0; 
}
输出:
0 1 2



相关用法


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