◐ Shell
clean mode source ↗

std::unordered_map::max_size - cppreference.com

Da cppreference.com.

Questa pagina è stata tradotta in modo automatico dalla versione in ineglese della wiki usando Google Translate.

La traduzione potrebbe contenere errori e termini strani. Muovi il puntatore sopra al testo per vedere la versione originale. Puoi aiutarci a correggere gli gli errori. Per ulteriori istruzioni clicca qui.

Click here for the English version of this page

<metanoindex/>

<tbody> </tbody>

size_type max_size() const;

(dal C++11)

Restituisce il numero massimo di elementi che il contenitore è in grado di tenere a causa delle limitazioni del sistema di attuazione o di una raccolta, vale a dire std::distance(begin(), end()) per il più grande contenitore.

Original:

Returns the maximum number of elements the container is able to hold due to system or library implementation limitations, i.e. std::distance(begin(), end()) for the largest container.

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

Parametri

(Nessuno)

Original:

(none)

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

Valore di ritorno

numero massimo di elementi

Original:

maximum number of elements

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

Eccezioni

Complessità

Constant

Original:

Constant

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

Note

Questo valore è tipicamente pari a std::numeric_limits<size_type>::max(), e riflette il limite teorico della dimensione del contenitore. Al runtime, la dimensione del contenitore può essere limitata ad un valore inferiore max_size() dalla quantità di RAM disponibile.

Original:

This value is typically equal to std::numeric_limits<size_type>::max(), and reflects the theoretical limit on the size of the container. At runtime, the size of the container may be limited to a value smaller than max_size() by the amount of RAM available.

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

See also

restituisce il numero di elementi

Original:

returns the number of elements

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


(metodo pubblico) [modifica]