CObArray::GetCount

返回数组元素的数目。

INT_PTR GetCount( ) const;

返回值

项的数目数组中。

备注

调用此方法检索元素数。数组的。 因为索引是从零开始,数组大小大于最大的索引为1。

下表显示类似于 CObArray::GetCount的其他成员函数。

成员函数

CByteArray

INT_PTR GetCount( ) 常量;

CDWordArray

INT_PTR GetCount( ) 常量;

CPtrArray

INT_PTR GetCount( ) 常量;

CStringArray

INT_PTR GetCount( ) 常量;

CUIntArray

INT_PTR GetCount( ) 常量;

CWordArray

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

请参见

参考

CObArray选件类

层次结构图

CObArray::GetUpperBound

CObArray::SetSize

CObArray::GetSize