CArray::RemoveAll
配列のすべての要素を削除します。
void RemoveAll( );
解説
配列が空の場合、関数は引き続き動作します。
使用例
CArray<CPoint,CPoint> myArray;
// Add elements to the array.
for (int i = 0; i < 10; i++)
myArray.Add(CPoint(i, 2*i));
myArray.RemoveAll();
#ifdef _DEBUG
afxDump.SetDepth(1);
afxDump << "myArray: " << &myArray << "\n";
#endif
必要条件
ヘッダー: afxtempl.h