CList::IsEmpty
Indica se esta lista não contém nenhum elemento.
BOOL IsEmpty( ) const;
Valor de retorno
Diferente de zero se essa lista está vazia; caso contrário, 0.
Exemplo
// 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);
}
Requisitos
Cabeçalho: afxtempl.h