Compartilhar via


CArray::RemoveAll

Remove todos os elementos da matriz.

void RemoveAll( );

Comentários

Se a matriz já estiver vazia, a função ainda funciona.

Exemplo

CArray<CPoint,CPoint> myArray;

// Add elements to the array. 
for (int i = 0; i < 10; i++)
   myArray.Add(CPoint(i, 2*i));

myArray.RemoveAll();

#ifdef _DEBUG
   afxDump.SetDepth(1);
   afxDump << "myArray: " << &myArray << "\n";
#endif      

Requisitos

Cabeçalho: afxtempl.h

Consulte também

Referência

Classe CArray

Gráfico da hierarquia