Partager via


allocator::allocator

Constructeurs utilisés pour créer des objets d'allocation.

allocator( ); 
allocator(
   const allocator<Type>& _Right
);
template<class Other>
   allocator(
      const allocator<Other>& _Right
   );

Paramètres

  • _Right
    l'objet d'allocation à copier.

Notes

Le constructeur ne fait rien.Toutefois, en général un objet d'allocation construit d'un autre objet d'allocation doit comparer une valeur égale à celui-ci et autoriser l'entremêlement de l'allocation d'objet et libérer entre les deux objets d'allocation.

Exemple

// allocator_allocator.cpp
// compile with: /EHsc
#include <memory>
#include <iostream>
#include <vector>

using namespace std;

class Int {
public:
   Int( int i ) 
   {
      cout << "Constructing " << ( void* )this  << endl; 
      x = i;
      bIsConstructed = true;
   };
   ~Int( ) 
   {
      cout << "Destructing " << ( void* )this << endl; 
      bIsConstructed = false;
   };
   Int &operator++( ) 
   {
      x++;
      return *this;
   };
   int x;
private:
   bool bIsConstructed;
};

int main( ) 
{
   allocator<double> Alloc;
   vector <Int>:: allocator_type v1Alloc;

   allocator<double> cAlloc(Alloc); 
   allocator<Int> cv1Alloc(v1Alloc);

   if ( cv1Alloc == v1Alloc )
      cout << "The allocator objects cv1Alloc & v1Alloc are equal."
           << endl;
   else
      cout << "The allocator objects cv1Alloc & v1Alloc are not equal."
           << endl;

   if ( cAlloc == Alloc )
      cout << "The allocator objects cAlloc & Alloc are equal."
           << endl;
   else
      cout << "The allocator objects cAlloc & Alloc are not equal."
           << endl;
}
  
  

Configuration requise

en-tête : <memory>

l'espace de noms : DST

Voir aussi

Référence

allocator Class