CList::IsEmpty
Gibt an, ob diese Liste keine Elemente enthält.
BOOL IsEmpty( ) const;
Rückgabewert
ungleich 0 (null), wenn diese Liste leer ist; 0 andernfalls.
Beispiel
// 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);
}
Anforderungen
Header: afxtempl.h