CArray::GetSize
傳回陣列的大小。
INT_PTR GetSize( ) const;
備註
因為索引以零起始,大小大於最大的索引為 1 個位元組。 呼叫這個方法產生的結果和 CArray::GetCount 方法相同。
範例
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;
}
需求
Header: afxtempl.h