CArray::GetSize
Restituisce le dimensioni della matrice.
INT_PTR GetSize( ) const;
Note
Poiché gli indici sono a base zero, la dimensione è maggiore di 1 più grande indice. Chiamare questo metodo genera lo stesso risultato del metodo CArray::GetCount.
Esempio
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;
}
Requisiti
Header: afxtempl.h