C++ Set 中的 get_allocator函数

首页 / C++入门教程 / C++ Set 中的 get_allocator函数

C++ set get_allocator()函数用于返回分配器对象的副本,该对象有助于构造set集合。

get_allocator - 语法

allocator_type get_allocator() const; 		//until C++ 11
allocator_type get_allocator() const noexcept; 	//since C++ 11

get_allocator - 返回值

返回与集合集合关联的分配器。

get_allocator - 例子1

让我们看一个简单的例子:

#include <iostream>
#include <set>

using namespace std;

int main(void) {
   set<double> m;   
   double *p;

   p = m.get_allocator().allocate(3);

   //size of double is 8
   cout << "Allocated size = " <<  sizeof(*p) * 4 << endl;

   return 0;
}

输出:

Allocated size = 32

get_allocator - 例子2

让我们看一个简单的例子:

#include <iostream>
#include <set>

using namespace std;

int main ()
{
  set<int> myset;
  int * p;
  unsigned int i;

 //allocate an array of 5 elements using myset's allocator:
  p=myset.get_allocator().allocate(5);

 //assign some values to array
  for (i=0; i<5; i++) p[i]=(i+1)*10;

  cout << "The allocated array contains:";
  for (i=0; i<5; i++) cout << ' ' << p[i];
  cout << '\n';

  myset.get_allocator().deallocate(p,5);

  return 0;
}

输出:

The allocated array contains: 10 20 30 40 50

get_allocator - 例子3

让我们看一个简单的示例,检查分配器是否可互换:

#include <set>  
#include <iostream>  
  
int main( )  
{  
   using namespace std;  
   set <int>::allocator_type s1_Alloc;  
   set <int>::allocator_type s2_Alloc;  
   set <double>::allocator_type s3_Alloc;  
   set <int>::allocator_type s4_Alloc;  
  
  //The following lines declare objects  
  //that use the default allocator.  
   set <int> s1;  
   set <int, allocator<int> > s2;  
   set <double, allocator<double> > s3;  
  
   s1_Alloc = s1.get_allocator( );  
   s2_Alloc = s2.get_allocator( );  
   s3_Alloc = s3.get_allocator( );  
  
   cout << "The number of integers that can be allocated"  
        << endl << "before free memory is exhausted: "  
        << s2.max_size( ) << "." << endl;  
  
   cout << "\nThe number of doubles that can be allocated"  
        << endl << "before free memory is exhausted: "  
        << s3.max_size( ) <<  "." << endl;  
  
  //The following line creates a set s4  
  //with the allocator of multiset s1.  
   set <int> s4( less<int>( ), s1_Alloc );  
  
   s4_Alloc = s4.get_allocator( );  
  
  //Two allocators are interchangeable if  
  //storage allocated from each can be  
  //deallocated by the other  
   if( s1_Alloc == s4_Alloc )  
   {  
      cout << "\nThe allocators are interchangeable."  
           << endl;  
   }  
   else  
   {  
      cout << "\nThe allocators are not interchangeable."  
           << endl;  
   }
   
   return 0;
}

输出:

The number of integers that can be allocated
before free memory is exhausted: 461168601842738790.

The number of doubles that can be allocated
before free memory is exhausted: 461168601842738790.

The allocators are interchangeable.

get_allocator - 例子4

让我们看一个简单的例子:

#include <iostream>
 #include <set>

using namespace std;

int  main () 
{ 
  set < int >  c ; 
  int *  p ;

  p  =  c . get_allocator () . allocate ( 2 );

  p [ 0 ]  =  42 ; 
  p [ 1 ]  =  43 ;

  cout  <<  p [ 0 ]  <<  ", "  <<  p [ 1 ]  <<  endl ;

  c . get_allocator () . deallocate ( p ,  2 ); 
}

输出:

42, 43

祝学习愉快!(内容编辑有误?请选中要编辑内容 -> 右键 -> 修改 -> 提交!)

技术教程推荐

Nginx核心知识150讲 -〔陶辉〕

趣谈Linux操作系统 -〔刘超〕

现代C++编程实战 -〔吴咏炜〕

说透芯片 -〔邵巍〕

讲好故事 -〔涵柏〕

React Native 新架构实战课 -〔蒋宏伟〕

遗留系统现代化实战 -〔姚琪琳〕

大厂设计进阶实战课 -〔小乔〕

JavaScript进阶实战课 -〔石川〕

好记忆不如烂笔头。留下您的足迹吧 :)