vector、map 内存释放

一、vector

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
void TestVector()
{
    cout << "begin create vector" << endl;
    int iSize = 10000000;
    vector<int> test_vec;
    for (int i = 0; i < iSize; i++)
    {
        test_vec.push_back(i);
    }
    cout << "create vector end" << endl;
 
    Sleep(2*1000);
    cout << "clear vector" << endl;
    test_vec.clear();
    cout << "clear vector end" << endl;
 
    Sleep(1*1000);
 
    cout << "after clear new data come if the size bigger" << endl;
    for (int i = 0; i < iSize; i++)
    {
        test_vec.push_back(i);
    }
    cout << "new data push_back end" << endl;
 
    Sleep(1*1000);
 
    cout << "swap vector" << endl;
 
    {
        vector<int> tmp_vec;
        test_vec.swap(tmp_vec);
    }
    cout << "swap vector end" << endl;
 
    Sleep(1*1000);
}

测试过程:

 

 

 

 

结论:

  1. vector clear 之后,内存没有释放,但在下次分配时会复用该块内存。

  2. vector swap 空数据之后,会释放内存。

 

 二、map

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
void TestMap()
{
    cout << "begin create map" << endl;
    int iSize = 1000000;
    map<int, int> test_map;
    for (int i = 0; i < iSize; i++)
    {
        test_map[i] = i;
    }
    cout << "create map end" << endl;
 
    Sleep(2*1000);
     
    cout << "clear map" << endl;
    test_map.clear();
    cout << "clear map end" << endl;
 
    getchar();
 
    cout << "swap map" << endl;
 
    {
        map<int, int> tmp_map;
        test_map.swap(tmp_map);
    }
    cout << "swap map end" << endl;
    getchar();
}

测试过程:

 

 

 

结论:

  1. map clear 之后,会释放内存。

  2. map swap 空数据之后,会释放内存。

 

posted @   那一剑的風情  阅读(2874)  评论(0编辑  收藏  举报
编辑推荐:
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 基于Microsoft.Extensions.AI核心库实现RAG应用
阅读排行:
· 10年+ .NET Coder 心语 ── 封装的思维:从隐藏、稳定开始理解其本质意义
· 地球OL攻略 —— 某应届生求职总结
· 提示词工程——AI应用必不可少的技术
· Open-Sora 2.0 重磅开源!
· 周边上新:园子的第一款马克杯温暖上架
历史上的今天:
2017-02-08 读取和写入文件
2017-02-08 mysql_query error:Commands out of sync;you can't run this command now
2017-02-08 static、extern分析
2017-02-08 C API 连接MySQL及批量插入
2017-02-08 struct与class的区别
2017-02-08 operator
2017-02-08 map用法小例子
点击右上角即可分享
微信分享提示