CList::IsEmpty

指示是否列表不包含任何元素。

BOOL IsEmpty( ) const;

返回值

非零,则此列表为空;否则为0。

示例

// 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);
}      

要求

Header: afxtempl.h

请参见

参考

CList选件类

层次结构图

CList::GetCount