CMap::RemoveAll
グローバル DestructElementsヘルパー関数を呼び出して、このマップからすべての値を削除します。
void RemoveAll( );
解説
関数は、マップが既に空の場合は正しく動作します。
使用例
CMap<int,int,CPoint,CPoint> myMap;
// Add 10 elements to the map.
for (int i=0;i < 10;i++)
myMap.SetAt(i, CPoint(i, i));
myMap.RemoveAll();
ASSERT(myMap.IsEmpty());
必要条件
ヘッダー: afxtempl.h