CObArray::GetCount
傳回陣列中的元素數目。
INT_PTR GetCount( ) const;
傳回值
項目數目的陣列。
備註
呼叫這個方法會擷取項目的參數數目等於陣列中的。 因為索引以零起始,大小大於最大的索引為 1 個位元組。
下表顯示類似 CObArray::GetCount的其他成員函式。
類別 |
成員函式 |
---|---|
INT_PTR GetCount const (); |
|
INT_PTR GetCount const (); |
|
INT_PTR GetCount const (); |
|
INT_PTR GetCount const (); |
|
INT_PTR GetCount const (); |
|
INT_PTR GetCount const (); |
範例
針對所有集合範例的 CAge 類別的目錄參閱 CObList::CObList 。
CObArray myArray;
// Add elements to the array.
for (int i = 0; i < 10; i++)
myArray.Add(new CAge(i));
// Add 100 to all the elements of the array.
for (int i = 0; i < myArray.GetCount(); i++)
{
CAge*& pAge = (CAge*&) myArray.ElementAt(i);
delete pAge;
pAge = new CAge(100 + i);
}
需求
Header: afxcoll.h