在 MFC(Microsoft Foundation Classes)中,CUIntArray 类提供了 GetCount 方法,用于获取数组中当前存储的元素数量。通常,GetCount 方法的声明如下:
int GetCount() const;

调用 GetCount 方法将返回数组中实际存储的元素数量。例如:
CUIntArray myIntArray;
// 填充 myIntArray

int count = myIntArray.GetCount();

上述代码中,count 将包含 myIntArray 数组中实际存储的元素数量。

请注意,GetCount 方法是一个常量成员函数,它不修改数组的内容。




转载请注明出处:http://www.zyzy.cn/article/detail/22996/MFC/CUIntArray