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


C++ unordered_multimap get_allocator用法及代碼示例


unordered_multimap::get_allocator()是C++ STL中的內置函數,用於獲取容器unordered_mulitmap的分配器。
用法:

Allocator_type get_allocator()

參數:該函數不接受任何參數。
返回值:返回與unordered_multimap關聯的分配器。

以下示例程序旨在說明unordered_multimap::get_allocator()函數的工作方式。示例1:



// CPP program to illustrate 
// unordered_multimap get_allocator() 
#include <bits/stdc++.h> 
using namespace std; 
  
int main() 
{ 
  
    //'ump' is object of 'unordered_multimap' 
    unordered_multimap<int, int> ump; 
  
    //'allocator_type' is inherit in 'unordered_multimap' 
    //'u' is object of 'allocator_type' 
    unordered_multimap<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_multimap get_allocator() 
#include <bits/stdc++.h> 
using namespace std; 
  
int main(void) 
{ 
    unordered_multimap<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_multimap get_allocator in C++ STL。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。