C的std :: string池,调试版本? std :: string和valgrind的问题

前端之家收集整理的这篇文章主要介绍了C的std :: string池,调试版本? std :: string和valgrind的问题前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个关于std :: string中可能的内存泄漏的许多valgrind警告的问题,像这样:
120 bytes in 4 blocks are possibly lost in loss record 4,192 of 4,687
    at 0x4A06819: operator new(unsigned long) (vg_replace_malloc.c:230)
    by 0x383B89B8B0: std::string::_Rep::_S_create(unsigned long,unsigned long,std::allocator<char> const&) (in /usr/lib64/libstdc++.so.6.0.8)
    by 0x383B89C3B4: (within /usr/lib64/libstdc++.so.6.0.8)
    by 0x383B89C4A9: std::basic_string<char,std::char_traits<char>,std::allocator<char> >::basic_string(char const*,std::allocator<char> const&) (in /usr/lib64/libstdc++.so.6.0.8)

我在想:

> std :: string(GCC 4.1.2)是否使用任何内存池?
>如果是,是否有任何方法来禁用池(以调试生成的形式等)?

解决方法

检查 FAQ.容器中有一个关于“内存泄漏”的部分.你应该

检查您的Valgrind版本>使用您的程序的调试版本(和未优化的)>并在必要时定义GLIBCXX_FORCE_NEW. (这是一个影响程序运行时行为的环境变量,而不是编译时#define,您可能会期望)

原文链接:https://www.f2er.com/c/114783.html

猜你在找的C&C++相关文章