具体的函数原型如下:
void RemoveAt(int nIndex, int nCount = 1);
参数说明:
- nIndex:要移除的元素的索引位置。
- nCount:要移除的元素的个数,默认为 1。
你可以通过以下方式使用这个方法:
CByteArray myArray;
// 假设已经有一些元素在数组中
int indexToRemove = 2;
int countToRemove = 1;
myArray.RemoveAt(indexToRemove, countToRemove);
上述代码演示了如何使用 RemoveAt 方法从数组 myArray 中的索引为 2 的位置移除一个元素。
请注意,如果 nCount 参数大于 1,将会移除从 nIndex 开始的连续的 nCount 个元素。
转载请注明出处:http://www.zyzy.cn/article/detail/15840/MFC/CByteArray