hash_set::get_allocator
[!NOTA]
Questo API è obsoleto.L'alternativa consiste unordered_set Class.
Restituisce una copia dell'oggetto allocatore utilizzato per creare il hash_set.
Allocator get_allocator( ) const;
Valore restituito
L'allocatore utilizzato dal hash_set per gestire memoria, ovvero il parametro di template Allocator.
Per ulteriori informazioni su Allocator, vedere la sezione relativa alle osservazioni dell'argomento hash_set Class.
Note
Gli allocatori per la classe di hash_set specificano come classe gestisce l'archiviazione.Gli allocatori predefiniti forniti con le classi di contenitori STL è sufficiente per la maggior parte delle esigenze di programmazione.La scrittura e utilizzare una classe personalizzata di un allocatore sono un argomento avanzato di C++.
In Visual C++ .NET 2003, i membri dei file di intestazione <hash_set> e <hash_map> non sono più nello spazio dei nomi di deviazione standard, ma sono stati spostati nello spazio dei nomi di stdext.Per ulteriori informazioni, vedere lo spazio dei nomi stdext.
Esempio
// hash_set_get_allocator.cpp
// compile with: /EHsc
#include <hash_set>
#include <iostream>
int main( )
{
using namespace std;
using namespace stdext;
// The following lines declare objects
// that use the default allocator.
hash_set <int, hash_compare <int, less<int> > > hs1;
hash_set <int, hash_compare <int, greater<int> > > hs2;
hash_set <double, hash_compare <double,
less<double> >, allocator<double> > hs3;
hash_set <int, hash_compare <int,
greater<int> > >::allocator_type hs2_Alloc;
hash_set <double>::allocator_type hs3_Alloc;
hs2_Alloc = hs2.get_allocator( );
cout << "The number of integers that can be allocated"
<< endl << "before free memory is exhausted: "
<< hs1.max_size( ) << "." << endl;
cout << "The number of doubles that can be allocated"
<< endl << "before free memory is exhausted: "
<< hs3.max_size( ) << "." << endl;
// The following lines create a hash_set hs4
// with the allocator of hash_set hs1.
hash_set <int>::allocator_type hs4_Alloc;
hash_set <int> hs4;
hs4_Alloc = hs2.get_allocator( );
// Two allocators are interchangeable if
// storage allocated from each can be
// deallocated by the other
if( hs2_Alloc == hs4_Alloc )
{
cout << "The allocators are interchangeable."
<< endl;
}
else
{
cout << "The allocators are not interchangeable."
<< endl;
}
}
Esempio di output
L'output seguente viene per x86.
The number of integers that can be allocated
before free memory is exhausted: 1073741823.
The number of doubles that can be allocated
before free memory is exhausted: 536870911.
The allocators are interchangeable.
Requisiti
intestazione: <hash_set>
Stdext diSpazio dei nomi: