CList::RemoveAll
Entfernt alle Elemente aus dieser Liste und gibt den zugeordneten Arbeitsspeicher frei.
void RemoveAll( );
Hinweise
Kein Fehler wird generiert, wenn die Liste bereits leer ist.
Beispiel
// 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());
Anforderungen
Header: afxtempl.h