CArray::GetSize
Devuelve el tamaño de la matriz.
INT_PTR GetSize( ) const;
Comentarios
Dado que los índices son de base cero, el tamaño es 1 mayor que el índice más grande.Llamar a este método generará el mismo resultado que el método de CArray::GetCount .
Ejemplo
CArray<CPoint,CPoint> myArray;
// Add elements to the array.
for (int i = 0; i < 10; i++)
myArray.Add(CPoint(i, 2*i));
// Modify all the points in the array.
for (int i = 0; i < myArray.GetSize(); i++)
{
CPoint& pt = myArray.ElementAt(i);
pt.x = 0;
}
Requisitos
encabezado: afxtempl.h