當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。