CObArray::GetSize
傳回陣列的大小。
INT_PTR GetSize( ) const;
備註
因為索引以零起始,大小大於最大的索引為 1 個位元組。
下表顯示類似 CObArray::GetSize的其他成員函式。
類別 |
成員函式 |
---|---|
INT_PTR GetSize const (); |
|
INT_PTR GetSize const (); |
|
INT_PTR GetSize const (); |
|
INT_PTR GetSize const (); |
|
INT_PTR GetSize const (); |
|
INT_PTR GetSize 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.GetSize(); i++)
{
CAge*& pAge = (CAge*&) myArray.ElementAt(i);
delete pAge;
pAge = new CAge(100+i);
}
#ifdef _DEBUG
afxDump.SetDepth(1);
afxDump << _T("myArray: ") << &myArray << _T("\n");
#endif
需求
Header: afxcoll.h