Espaços nominais
Variantes
Acções

std::scoped_allocator_adaptor::inner_allocator

Da cppreference.com

 
 
Gerenciamento de memória dinâmica
Gerenciamento de memória de baixo nível
Alocadores
Original:
Allocators
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Uninitialized armazenamento
Original:
Uninitialized storage
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Ponteiros inteligentes
Original:
Smart pointers
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C++11)
(C++11)
(C++11)
(obsoleta)
(C++11)
Apoio a coleta de lixo
Original:
Garbage collection support
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Diversos
Original:
Miscellaneous
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C++11)
(C++11)
C Library
Original:
C Library
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
 
std::scoped_allocator_adaptor
Funções de membro
Original:
Member functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
scoped_allocator_adaptor::scoped_allocator_adaptor
scoped_allocator_adaptor::~scoped_allocator_adaptor
scoped_allocator_adaptor::inner_allocator
scoped_allocator_adaptor::outer_allocator
scoped_allocator_adaptor::allocate
scoped_allocator_adaptor::deallocate
scoped_allocator_adaptor::max_size
scoped_allocator_adaptor::construct
scoped_allocator_adaptor::destroy
scoped_allocator_adaptor::select_on_container_copy_construction
Não-membros funções
Original:
Non-member functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
 
Definido no cabeçalho <scoped_allocator>
inner_allocator_type& inner_allocator()
(1) (desde C++11)
const inner_allocator_type& inner_allocator() const
(2) (desde C++11)
Obtém uma referência para o alocador interior usado para declarar este scoped_allocator_adaptor.
Original:
Obtains a reference to the inner allocator used to declare this scoped_allocator_adaptor.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Se sizeof...(InnerAllocs)==0, isto é, não alocadores internos foram declarados, *this retornos. Caso contrário devolve uma referência a std::scoped_allocator_adaptor<InnerAllocs...>, isto é, um alocador escopo composto por todos os alocadores internos de *this, com o alocador primeiro interna a tornar-se o alocador exterior.
Original:
If sizeof...(InnerAllocs)==0, that is, no inner allocators were declared, returns *this. Otherwise returns a reference to std::scoped_allocator_adaptor<InnerAllocs...>, that is, a scoped allocator composed of all inner allocators of *this, with the first inner allocator becoming the outer allocator.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Índice

[editar] Parâmetros

(Nenhum)
Original:
(none)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[editar] Valor de retorno

Uma referência para o alocador de interior, que é em si um std::scoped_allocator_adaptor.
Original:
A reference to the inner allocator, which is itself a std::scoped_allocator_adaptor.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[editar] Exceções

1-2)
noexcept specification:  
noexcept
  (desde C++11)

[editar] Veja também

obtém uma referência outer_allocator
Original:
obtains an outer_allocator reference
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(função pública membro) [edit]