CList::CList
Vytvoří prázdný seznam pořadí.
CList(
INT_PTR nBlockSize = 10
);
Parametry
- nBlockSize
Granularita přidělení paměti pro rozšíření seznamu.
Poznámky
S narůstajícím seznamu je přidělena paměť v jednotkách nBlockSize položek.
Příklad
// 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);
Požadavky
Záhlaví: afxtempl.h