CArray::GetCount
Retorna o número de elementos da matriz.
INT_PTR GetCount( ) const;
Valor de retorno
O número de itens na matriz.
Comentários
Chamar esse método para recuperar o número de elementos na matriz.Porque os índices são de base zero, o tamanho 1 é maior do que o índice maior.Chamar este método irá gerar o mesmo resultado que o método de CArray::GetSize .
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.GetCount(); i++)
{
CPoint& pt = myArray.ElementAt(i);
pt.x = 0;
}
Requisitos
Cabeçalho: afxtempl.h