std::initializer_list
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. |
Elemento definito nell'header <initializer_list>
|
||
template< class T > class initializer_list; |
(dal C++11) | |
Un oggetto di
std::initializer_list<T>
tipo è un oggetto proxy leggero, che fornisce l'accesso a un array di oggetti di tipo T
, assegnato dal implementazione in deposito non specificata (che potrebbe essere automatica, temporanea, o statico memoria di sola lettura, a seconda della situazione )Original:
An object of type
std::initializer_list<T>
is a lightweight proxy object, which provides access to an array of objects of type T
, allocated by the implementation in unspecified storage (which could be automatic, temporary, or static read-only memory, depending on the situation)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.
Questa matrice viene inizializzato e un oggetto
std::initializer_list
è costruito quando un rinforzato-init-list viene utilizzato in list-inizializzazione, tra cui la chiamata di funzione di inizializzazione lista e un'espressione di assegnazione (da non confondere con lista di inizializzazione del costruttore), o quando rinforzato-init-list è destinato a auto, anche in un ciclo for.. a distanzaOriginal:
This array is initialized and a
std::initializer_list
object is constructed when a braced-init-list is used in list-inizializzazione, including function-call list initialization and assignment expression (not to be confused with lista di inizializzazione del costruttore), or when braced-init-list is bound to auto, including in a ranged for loop.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.
inizializzatore elenco può essere implementato come una coppia di puntatori o puntatore e la lunghezza. Copiare un
std::initializer_list
non copiare gli oggetti sottostanti. L' matrice sottostante non è garantito ad esistere dopo la durata dell'oggetto originale lista di inizializzazione è terminata.Original:
Initializer list may be implemented as a pair of pointers or pointer and length. Copying a
std::initializer_list
does not copy the underlying objects. The underlying array is not guaranteed to exist after the lifetime of the original initializer list object has ended.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] Membri tipi
Membro tipo
Original: Member type The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
Definition |
value_type
|
T |
reference
|
const T& |
const_reference
|
const T& |
size_type
|
size_t |
iterator
|
const T* |
const_iterator
|
const T* |
[modifica] Membri funzioni
crea una lista vuota inizializzatore Original: creates an empty initializer list The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (metodo pubblico) | |
Original: Capacity The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | |
restituisce il numero di elementi nella lista di inizializzazione Original: returns the number of elements 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. (metodo pubblico) | |
Original: Iterators The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | |
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) | |
restituisce un puntatore a un passato l'ultimo elemento Original: returns a pointer to one past the last 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) |
[modifica] Non membri funzioni
specializzata std::begin Original: specializes std::begin The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (funzione di modello) | |
specializzata std::end Original: specializes std::end The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (funzione di modello) |
[modifica] Esempio
#include <iostream> #include <vector> #include <initializer_list> template<class T> struct S { std::vector<T> v; S(std::initializer_list<T> l) : v(l) { std::cout << "constructed with a " << l.size() << "-element list\n"; } void append(std::initializer_list<T> l) { v.insert(v.end(), l.begin(), l.end()); } std::pair<const int*, size_t> c_arr() const { return {&v[0], v.size()}; // list-initialization in return statement } }; template<typename T> void templated_fn(T) { } int main() { S<int> s = {1,2,3,4,5}; // direct list-initialization s.append({6,7,8}); // list-initialization in function call std::cout << "The vector size is now " << s.c_arr().second << " ints:\n"; for(auto n : s.v) std::cout << ' ' << n; std::cout << '\n'; std::cout << "range-for over brace-init-list: \n"; for(int x : {-1, -2, -3}) // the rule for auto makes this ranged for work std::cout << x << ' '; std::cout << '\n'; auto al = {10, 11, 12}; // special rule for auto std::cout << "The list bound to auto has size() = " << al.size() << '\n'; // templated_fn({1,2,3}); // compiler error! "{1,2,3}" is not an expression, // it has no type, and so T cannot be deduced templated_fn<std::initializer_list<int>>({1,2,3}); // OK templated_fn<std::vector<int>>({1,2,3}); // also OK }
Output:
The vector size is now 8 ints: 1 2 3 4 5 6 7 8 range-for over brace-init-list: -1 -2 -3 The list bound to auto has size() = 3