Valgrind内存泄漏与std :: map中的std :: string

Mat*_*att 5 c++ valgrind stdmap stdstring

这是Valgrind的输出:

==6519==    at 0x4C25885: operator new(unsigned long) (vg_replace_malloc.c:319)
==6519==    by 0x4EE65D8: std::string::_Rep::_S_create(unsigned long, unsigned long, std::allocator<char> const&) (new_allocator.h:104)
==6519==    by 0x4EE7CE0: char* std::string::_S_construct<char const*>(char const*, char const*, std::allocator<char> const&, std::forward_iterator_tag) (basic_string.tcc:138)
==6519==    by 0x4EE80F7: std::basic_string<char, std::char_traits<char>, std::allocator<char> >::basic_string(char const*, std::allocator<char> const&) (basic_string.h:1725)
==6519==    by 0x41C399: pilInpOpts::pilInpOpts() (pilInpOpts.cpp:12)
==6519==    by 0x403A55: main (main.cpp:32)
Run Code Online (Sandbox Code Playgroud)

对于地图中的每个条目重复相同的错误.

main.cpp第32行是:

    pilInpOpts input;
Run Code Online (Sandbox Code Playgroud)

pilInpOpts的第12行是构造函数的一部分:

#include "pilInpOpts.h"
#include <iostream>
#include <fstream>
#include <string>
#include <sstream>


pilInpOpts::pilInpOpts() 
{
// create the map of options, put in alphabetical order to ease sorting
piloptmap.insert(std::pair<std::string, bool>("bforce",false));
piloptmap.insert(std::pair<std::string, bool>("coef",false));
piloptmap.insert(std::pair<std::string, bool>("dualjet",false));
piloptmap.insert(std::pair<std::string, bool>("flow",false));
piloptmap.insert(std::pair<std::string, bool>("gforce",false));
piloptmap.insert(std::pair<std::string, bool>("gpress",false));
piloptmap.insert(std::pair<std::string, bool>("matlab",false));
piloptmap.insert(std::pair<std::string, bool>("model",false));
piloptmap.insert(std::pair<std::string, bool>("out_shade",false));
piloptmap.insert(std::pair<std::string, bool>("out_shade_file",false));
piloptmap.insert(std::pair<std::string, bool>("press",false));
piloptmap.insert(std::pair<std::string, bool>("proc",false));
piloptmap.insert(std::pair<std::string, bool>("shade",false));
piloptmap.insert(std::pair<std::string, bool>("summary",false));
piloptmap.insert(std::pair<std::string, bool>("trans",false));
// need to define the default filepaths, this is needed because they are optional
platpath = "";
vehpath = "";
apppath = "";
dockpath = "";
};
Run Code Online (Sandbox Code Playgroud)

我在SO中发现了一些帖子,说Valgrind可能会产生误报.例如:std :: string内存泄漏

这是误报,因为std :: string具有所有构造函数等,它需要这样做吗?或者我应该更改为在地图中使用C字符数组?

ks1*_*322 5

这种行为的一个可能原因可能是C++标准库实现中的内存池.

来自Valgrind faq:

很多被破坏对象的内存不会立即被释放并返回给操作系统,而是保存在池中以供以后重复使用.在程序退出时未释放池的事实导致Valgrind报告此内存仍可访问.不要在出口处释放池的行为可以称为库的错误.

您可以GLIBCXX_FORCE_NEW在运行应用程序之前设置环境变量,以强制STL尽快释放内存.

有关libstdc ++内存分配器实现的详细信息,请参阅这些链接: