以下是一个示例用法:
CMap<int, int, CString, CString&> myMap;
// 添加一些键值对
myMap[1] = "One";
myMap[2] = "Two";
myMap[3] = "Three";
// 移除键为2的键值对
myMap.RemoveKey(2);
// 查找键为2的值
int keyToFind = 2;
CString foundValue;
if (myMap.Lookup(keyToFind, foundValue)) {
wprintf(L"Value for key %d: %s\n", keyToFind, (LPCTSTR)foundValue);
} else {
wprintf(L"Key %d not found in the map.\n", keyToFind);
}
在这个例子中,RemoveKey 方法用于移除键为2的键值对。然后,使用 Lookup 方法检查键为2的值是否存在。如果键未找到,将输出 "Key 2 not found in the map."。
RemoveKey 方法对于按键移除键值对非常有用,使得您可以根据需要动态地修改映射中的内容。
转载请注明出处:http://www.zyzy.cn/article/detail/18668/MFC/CMap