int GetCount() const;
调用 GetCount 方法将返回数组中实际存储的元素数量。例如:
CUIntArray myIntArray;
// 填充 myIntArray
int count = myIntArray.GetCount();
上述代码中,count 将包含 myIntArray 数组中实际存储的元素数量。
请注意,GetCount 方法是一个常量成员函数,它不修改数组的内容。
转载请注明出处:http://www.zyzy.cn/article/detail/22996/MFC/CUIntArray