Espaços nominais
Variantes
Acções

std::allocator_traits::deallocate

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::allocator_traits
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.
allocator_traits::allocate
allocator_traits::deallocate
allocator_traits::construct
allocator_traits::destroy
allocator_traits::max_size
allocator_traits::select_on_container_copy_construction
 
Definido no cabeçalho <memory>
static void deallocate( Alloc& a, pointer p, size_type n );
(desde C++11)
Usa o a alocador liberar o armazenamento referenciado por p, chamando a.deallocate(p, n)
Original:
Uses the allocator a to deallocate the storage referenced by p, by calling a.deallocate(p, n)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.


[editar] Parâmetros

a -
alocador de usar
Original:
allocator to use
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
p -
ponteiro para o armazenamento, anteriormente atribuído
Original:
pointer to the previously allocated storage
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
n -
o número de objetos do armazenamento foi alocada para
Original:
the number of objects the storage was allocated for
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

(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] Veja também

[estática]
aloca não inicializado de armazenamento usando o alocador
Original:
allocates uninitialized storage using the allocator
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(função public static membro) [edit]
desaloca armazenamento
Original:
deallocates storage
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(of std::allocator função pública membro) [edit]