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


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


multimap::get_allocator()是C++中STL中的一个函数,该函数返回与此多图关联的分配器对象的副本。

用法:

multimap.get_allocator()

返回值:此函数返回与此多图关联的分配器对象的副本。


下面的示例说明了get_allocator()方法:

例:

// C++ program demonstrate 
// multimap::get_allocator() 
  
#include <iostream> 
#include <map> 
using namespace std; 
  
int main() 
{ 
    int psize; 
    multimap<char, int> mm; 
    pair<const char, int>* p; 
  
    // allocate an array of 5 elements 
    // using mm's allocator:
    p = mm.get_allocator().allocate(5); 
  
    // assign some values to array 
    psize = sizeof(multimap<char, int>::value_type) * 5; 
  
    cout << "The size of allocated array is "
         << psize << " bytes.\n"; 
  
    mm.get_allocator().deallocate(p, 5); 
  
    return 0; 
}
输出:
The size of allocated array is 40 bytes.

范例2:

// C++ program to demonstrate 
// multimap::get_allocator() 
  
#include <iostream> 
#include <map> 
using namespace std; 
  
int main() 
{ 
    int psize; 
  
    multimap<char, int> mm; 
    pair<const char, int>* p; 
  
    // allocate an array of 10 elements 
    // using mm's allocator:
  
    p = mm.get_allocator().allocate(10); 
  
    // assign some values to array 
    psize = sizeof(multimap<char, int>::value_type) * 10; 
  
    cout << "The size of allocated array is "
         << psize << " bytes.\n"; 
  
    mm.get_allocator().deallocate(p, 10); 
  
    return 0; 
}
输出:
The size of allocated array is 80 bytes.


相关用法


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