CArray::GetCount
Restituisce il numero di elementi di matrice.
INT_PTR GetCount( ) const;
Valore restituito
Il numero di elementi nella matrice.
Note
Chiamare questo metodo per recuperare il numero di elementi nella matrice. 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::GetSize.
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.GetCount(); i++)
{
CPoint& pt = myArray.ElementAt(i);
pt.x = 0;
}
Requisiti
Header: afxtempl.h