Поделиться через


hash_multiset::get_allocator

ПримечаниеПримечание

Этот API устарел.Альтернативы unordered_multiset Class.

Возвращает копию объекта выделения, используемого для построения hash_multiset.

Allocator get_allocator( ) const;

Возвращаемое значение

Механизм распределения, используемый hash_multiset для управления памятью, параметр Allocator шаблона типа.

Дополнительные сведения о Allocator см. в подразделе "Примечания" раздела hash_multiset Class.

Заметки

Allocators для класса hash_multiset определяют, как класс управляет хранением.По умолчанию allocators, поставляемые с классами контейнеров STL достаточны для большинства необходимостей программирования.Создание и использование собственного класса распределитель раздел дополнительно C++.

В Visual C++ .NET 2003 <hash_map> элементы файлов заголовков и <hash_set> больше не находятся в пространстве имен std, но скорее перейти на пространство имен stdext.Дополнительные сведения см. в разделе Пространство имен stdext.

Пример

// hash_multiset_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_multiset <int, hash_compare <int, less<int> > > hms1;
   hash_multiset <int, hash_compare <int, greater<int> > > hms2;
   hash_multiset <double, hash_compare <double,
      less<double> >, allocator<double> > hms3;

   hash_multiset <int, hash_compare <int,
      greater<int> > >::allocator_type hms2_Alloc;
   hash_multiset <double>::allocator_type hms3_Alloc;
   hms2_Alloc = hms2.get_allocator( );

   cout << "The number of integers that can be allocated"
        << endl << "before free memory is exhausted: "
        << hms1.max_size( ) << "." << endl;

   cout << "The number of doubles that can be allocated"
        << endl << "before free memory is exhausted: "
        << hms3.max_size( ) <<  "." << endl;

   // The following lines create a hash_multiset hms4
   // with the allocator of hash_multiset hms1.
   hash_multiset <int>::allocator_type hms4_Alloc;
   hash_multiset <int> hms4;
   hms4_Alloc = hms2.get_allocator( );

   // Two allocators are interchangeable if
   // storage allocated from each can be
   // deallocated by the other
   if( hms2_Alloc == hms4_Alloc )
   {
      cout << "The allocators are interchangeable."
           << endl;
   }
   else
   {
      cout << "The allocators are not interchangeable."
           << endl;
   }
}

Пример результатов выполнения

Следующий результат для 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.

Требования

заголовок: <hash_set>

Stdext пространство имен:

См. также

Ссылки

hash_multiset Class

Стандартная библиотека шаблонов