다음을 통해 공유


CList::RemoveAll

이 목록에서 모든 요소를 제거 하 고 연결 된 메모리를 해제 합니다.

void RemoveAll( );

설명

이미 비어 있는 경우 오류가 생성 됩니다.

예제

// 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 all of the elements in the list.
myList.RemoveAll();

// Verify the list is empty.
ASSERT(myList.IsEmpty());      

요구 사항

헤더: afxtempl.h

참고 항목

참조

CList 클래스

계층 구조 차트

CList::RemoveAt