C++ map 如何清空 内存泄露

Posted 软件工程小施同学

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++ map 如何清空 内存泄露相关的知识,希望对你有一定的参考价值。

一、map值存储的是指针

map自带的.clear()函数会清空map里存储的所有内容,但如果map值存储的是指针,则里面的值不会被清空,会造成内存泄漏,所以值为指针的map必须用迭代器清空。

1. erase迭代删除

std::map<int, HHH*> test_map;HHH* h1 = new HHH;HHH* h2 = new HHH;test_map[0] = h1;test_map[1] = h2;
// 删除std::map<int, HHH*>::iterator iter;for (iter = test_map.begin(); iter != test_map.end();)    delete iter->second;    iter->second = nullptr;    // 删除迭代器元素先加加再删,否则迭代器失效程序崩溃!!!(必须iter++不可以++iter)    test_map.erase(iter++);

2. clear统一删除

  std::map<int, HHH*> test_map;    HHH* h1 = new HHH;    HHH* h2 = new HHH;    test_map[0] = h1;    test_map[1] = h2;
    // 删除    std::map<int, HHH*>::iterator iter;    for (iter = test_map.begin(); iter != test_map.end();)            delete iter->second;        iter->second = nullptr;        // 删除迭代器元素先加加再删,否则迭代器失效程序崩溃!!!(必须iter++不可以++iter)        iter++;        test_map.clear();

参考文章:

https://blog.csdn.net/weixin_42964413/article/details/123484528

二、map值存储的不是指针

如果值里面存的是值而不是指针的话直接clear()即可。

std::map<int,int> test_map;test_map[0] = 0;test_map[1] = 0;
// 删除test_map.clear();

参考文章:

https://blog.csdn.net/weixin_42964413/article/details/123484528

三、map中存储的是智能指针

若是采用了智能指针,则无需单独delete,智能指针,会自动释放内存

 

 

参考文章:

https://blog.csdn.net/u013288190/article/details/127482645

四、清空map释放内存

若需要多次使用同一个map,其中每次使用后都clear清空,多次之后,可能出现内存泄露,这是因为map的空间便没有释放,所以得使用swap清空。

如内存错误提示

Program terminated with signal SIGSEGV, Segmentation fault.#0  0x00000000010ca227 in tcmalloc::SLL_Next(void*) ()(gdb) bt#0  0x00000000010ca227 in tcmalloc::SLL_Next(void*) ()#1  0x00000000010ca2b8 in tcmalloc::SLL_TryPop(void**, void**) ()#2  0x00000000010ca715 in tcmalloc::ThreadCache::FreeList::TryPop(void**) ()#3  0x00000000011ebe6c in tc_newarray ()

#include <iostream>#include <map>#include <malloc.h>using namespace std;void func()        map<int,string> mp;        int i = 5000000;        while(i--)            mp.insert(make_pair(i,string("hell000o")));        map<int,string>().swap(mp);int main()        func();        cout <<"done."<<endl;        malloc_trim(0);        while(1);

参考文章:

https://blog.csdn.net/u013288190/article/details/127500545

以上是关于C++ map 如何清空 内存泄露的主要内容,如果未能解决你的问题,请参考以下文章

C++ map 如何清空 内存泄露

C++ map删除所有元素 指针 泄露内存

c++ map clear相关内存会清空吗?

c++ map clear相关内存会清空吗

c++ map clear相关内存会清空吗?

C++ 如何清空unordered_map