std::initializer_list::end
Da cppreference.com.
< cpp | utility | initializer list
![]() |
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. |
const T* end() const; |
(dal C++11) | |
Restituisce un puntatore a un oltre l'ultimo elemento della lista di inizializzazione, cioè
begin() + size()
.Original:
Returns a pointer to one past the last element in the initializer list, i.e.
begin() + 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.
Se la lista di inizializzazione è vuoto, i valori di std::initializer_list::begin e std::initializer_list::end non sono specificate, ma sarà identico.
Original:
If the initializer list is empty, the values of std::initializer_list::begin and std::initializer_list::end are unspecified, but will be identical.
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.
Indice |
[modifica] 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.
You can help to correct and verify the translation. Click here for instructions.
[modifica] Valore di ritorno
un puntatore a un passato l'ultimo elemento della lista di inizializzazione
Original:
a pointer to one past the last element in the initializer list
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.
[modifica] Eccezioni
[modifica] 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.
You can help to correct and verify the translation. Click here for instructions.
[modifica] Vedi anche
restituisce un puntatore al primo elemento Original: returns a pointer the first element The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (metodo pubblico) |