CArray::GetSize
Retorna o tamanho da matriz.
INT_PTR GetSize( ) const;
Comentários
Como os índices são baseado em zero, o dimensionar é maior do que o maior índice 1.Chamar esse método irá gerar o mesmo resultado que o CArray::GetCount método.
Exemplo
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
Cabeçalho: afxtempl.h