Espaços nominais
Variantes
Acções

std::allocator_traits::max_size

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 size_type max_size( Alloc& a )
(desde C++11)
Se possível, obtém o tamanho de alocação máximo teoricamente possível a partir do a alocador, chamando
Original:
If possible, obtains the maximum theoretically possible allocation size from the allocator a, by calling
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

a.max_size()

Se o acima não é possível (por exemplo a não tem a função de membro max_size()), então retorna
Original:
If the above is not possible (e.g. a does not have the member function max_size(),), then returns
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

    std::numeric_limits<size_type>::max()

[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

Tamanho de alocação máximo teórico
Original:
Theoretical maximum allocation size
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

retorna o tamanho maior alocação suportado
Original:
returns the largest supported allocation size
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]