int GetCount() const;
GetCount 方法返回数组中元素的个数,即当前存储的元素数量。
以下是一个示例,演示如何使用 CArray 的 GetCount 方法:
CArray<int, int> myArray;
myArray.Add(10);
myArray.Add(20);
myArray.Add(30);
int count = myArray.GetCount(); // 获取数组中元素的个数
// 输出结果
TRACE(_T("Number of elements in the array: %d\n"), count);
在这个例子中,首先创建了一个整数数组 myArray 并向其中添加了一些元素。然后,使用 GetCount 方法获取了数组中元素的个数,并将结果存储在变量 count 中。最后,通过调用 TRACE 函数输出结果。
GetCount 方法对于确定数组的大小和迭代数组中的元素很有用。请注意,返回的是数组中实际存储的元素数量,而不是数组的总容量。如果需要获取数组的总容量,可以使用 GetSize 方法。
转载请注明出处:http://www.pingtaimeng.com/article/detail/15462/MFC/CArray