CMap::RemoveAll

从此映射移除所有值通过调用全局helper函数 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());      

要求

Header: afxtempl.h

请参见

参考

CMap选件类

层次结构图

CMap::RemoveKey