Udostępnij za pośrednictwem


vector::get_allocator

Zwraca kopię obiektu alokatora wykorzystywanych do konstruowania wektora.

Allocator get_allocator( ) const;

Wartość zwracana

Program przydzielania używane przez wektor.

Uwagi

Allocators dla klasy vector określ, jak klasa zarządza Magazyn.Allocators domyślne dostarczane z klasami STL kontenera są wystarczające dla potrzeb większości programów.Pisanie i przy użyciu klasy alokatora jest temat zaawansowany C++.

Przykład

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

int main( )
{
   using namespace std;
   // The following lines declare objects that use the default allocator.
   vector<int> v1;
   vector<int, allocator<int> > v2 = vector<int, allocator<int> >(allocator<int>( )) ;

   // v3 will use the same allocator class as v1
   vector <int> v3( v1.get_allocator( ) );

   vector<int>::allocator_type xvec = v3.get_allocator( );
   // You can now call functions on the allocator class used by vec
}

Wymagania

Nagłówek: <vector>

Obszar nazw: std

Zobacz też

Informacje

vector Class

Standardowa biblioteka szablonu