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