Compartilhar via


CArray::GetSize

Retorna o tamanho da matriz.

INT_PTR GetSize( ) const;

Comentários

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::GetCount .

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

Consulte também

Referência

Classe de CArray

Gráfico de hierarquia

CArray::GetUpperBound

CArray::GetCount