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