CList::IsEmpty
Wskazuje, czy ta lista nie zawiera żadnych elementów.
BOOL IsEmpty( ) const;
Wartość zwracana
Niezerowa, jeśli lista jest pusta; 0 inaczej.
Przykład
// Define myList.
CList<CString,CString&> myList;
// Add three elements to the list.
myList.AddTail(CString(_T("XYZ")));
myList.AddTail(CString(_T("ABC")));
myList.AddTail(CString(_T("123")));
// Remove the head element until the list is empty.
CString str;
while (!myList.IsEmpty())
{
str = myList.RemoveHead();
TRACE(_T("%s\r\n"), (LPCTSTR) str);
}
Wymagania
Nagłówek: afxtempl.h