CList::CList
Crea un elenco ordinato vuoto.
CList(
INT_PTR nBlockSize = 10
);
Parametri
- nBlockSize
La granularità di allocazione della memoria per l'estensione dell'elenco.
Note
Quando l'elenco aumenta, è allocata la memoria in unità delle voci nBlockSize.
Esempio
// This code defines myList as a list of strings
// such that memory gets allocated in chunks of
// 16 strings.
CList<CString,CString&> myList(16);
// This code defines myList2 as a list of ints
// such that memory gets allocated in chunks of
// 128 ints.
CList<int,int> myList2(128);
Requisiti
Header: afxtempl.h