std::allocator::max_size
De cppreference.com
<metanoindex/>
<tbody> </tbody>| Definido no cabeçalho <memory>
|
||
size_type max_size() const |
||
Retorna o valor máximo teoricamente possível de
n, para o qual a chamada allocate(n, 0) poderia ter sucesso. Original:
Returns the maximum theoretically possible value of
n, for which the call allocate(n, 0) could succeed. The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Na maioria das implementações, este retorna
std::numeric_limits<size_type>::max().Original:
In most implementations, this returns
std::numeric_limits<size_type>::max().The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
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.
You can help to correct and verify the translation. Click here for instructions.
Valor de retorno
O tamanho de alocação máximo suportado
Original:
The maximum 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.
You can help to correct and verify the translation. Click here for instructions.
