Compartir a través de


CList::RemoveAll

quita todos los elementos de esta lista y libera memoria asociado.

void RemoveAll( );

Comentarios

No se genera ningún error si la lista ya está vacía.

Ejemplo

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

Requisitos

encabezado: afxtempl.h

Vea también

Referencia

CList Class

Gráfico de jerarquías

CList::RemoveAt