Biblioteca C ++ Forward_list - função get_allocator ()

Descrição

A função C ++ std::forward_list::get_allocator() retorna um alocador associado a forward_list.

Declaração

A seguir está a declaração da função std :: forward_list :: get_allocator () do cabeçalho std :: forward_list.

C ++ 11

allocator_type get_allocator() const noexcept;

Parâmetros

Nenhum

Valor de retorno

Retorna um alocador associado a forward_list.

Exceções

Esta função de membro nunca lança exceção.

Complexidade de tempo

Constante, ou seja, O (1)

Exemplo

O exemplo a seguir mostra o uso da função std :: forward_list :: get_allocator ().

#include <iostream>
#include <forward_list>

using namespace std;

int main(void) {

   forward_list<int> fl = {1, 2, 3, 4, 5};
   int *p = NULL;

   p = fl.get_allocator().allocate(5);

   for (int i = 0; i < 5; ++i)
      p[i] = i + 1;

   cout << "List contains following elements" << endl;

   for (int i = 0; i < 5; ++i)
      cout << p[i] << endl;

   return 0;
}

Vamos compilar e executar o programa acima, isso produzirá o seguinte resultado -

List contains following elements
1
2
3
4
5