Partager via


allocator::const_pointer

Un type qui fournit un pointeur change pas au type d'objet a géré par l'allocateur.

typedef const value_type *const_pointer;

Notes

Le type pointeur décrit un objet ptr qui peut lire, via l'expression *ptr, tout objet const qu'un objet d'allocateur de classe de modèle peut allouer.

Exemple

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

using namespace std;

int main( ) 
{
   vector <int> v1;
   vector <int>::iterator v1Iter;
   vector <int>:: allocator_type v1Alloc;

   int i;
   for ( i = 1 ; i <= 7 ; i++ )
   {
      v1.push_back( i * 2 );
   }

   cout << "The original vector v1 is:\n ( " ;
   for ( v1Iter = v1.begin( ) ; v1Iter != v1.end( ) ; v1Iter++ )
      cout << *v1Iter << " ";
   cout << ")." << endl;

   allocator<int>::const_pointer v1Ptr;
   const int k = 10;
   v1Ptr = v1Alloc.address( k );

   cout << "The integer's address found has a value of: "
        << *v1Ptr << "." << endl;
}
  
  

Configuration requise

en-tête : <memory>

l'espace de noms : DST

Voir aussi

Référence

allocator Class