CObArray::GetSize
返回数组的大小。
INT_PTR GetSize( ) const;
备注
因为索引是从零开始,数组大小大于最大的索引为1。
下表显示类似于 CObArray::GetSize的其他成员函数。
类 |
成员函数 |
---|---|
INT_PTR GetSize( ) 常量; |
|
INT_PTR GetSize( ) 常量; |
|
INT_PTR GetSize( ) 常量; |
|
INT_PTR GetSize( ) 常量; |
|
INT_PTR GetSize( ) 常量; |
|
INT_PTR GetSize( ) 常量; |
示例
提供用于所有集合示例的列表 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