一、map值存储的是指针
map自带的.clear()函数会清空map里存储的所有内容,但如果map值存储的是指针,则里面的值不会被清空,会造成内存泄漏,所以值为指针的map必须用迭代器清空。
erase迭代删除
std::map test_map;
HHH* h1 = new HHH;
HHH* h2 = new HHH;
test_map[0] = h1;
test_map[1] = h2;
// 删除
std::map::iterator iter;
for (iter = test_map.begin(); iter != test_map.end()😉
{
delete iter->second;
iter->second = nullptr;
// 删除迭代器元素先加加再删,否则迭代器失效程序崩溃!!!(必须iter++不可以++iter)
test_map.erase(iter++);
}
clear统一删除
std::map test_map;
HHH* h1 = new HHH;
HHH* h2 = new HHH;
test_map[0] = h1;
test_map[1] = h2;
// 删除
std::map::iterator iter;
for (iter = test_map.begin(); iter != test_map.end()😉
{
delete iter->second;
iter->second = nullptr;
// 删除迭代器元素先加加再删,否则迭代器失效程序崩溃!!!(必须iter++不可以++iter)
iter++;
}
test_map.clear();
二、map值存储的不是指针
如果值里面存的是值而不是指针的话直接clear()即可。
std::map test_map;
test_map[0] = 0;
test_map[1] = 0;
// 删除
test_map.clear();
三、map中存储的是智能指针
若是采用了智能指针,则无需单独delete,智能指针,会自动释放内存