다음을 통해 공유


CList::IsEmpty

이 목록에 요소가 포함 되어 있는지 여부를 나타냅니다.

BOOL IsEmpty( ) const;

반환 값

이 목록이 비어 있으면 0이 아닌. 그렇지 않으면 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);
}      

요구 사항

헤더: afxtempl.h

참고 항목

참조

CList 클래스

계층 구조 차트

CList::GetCount