不清楚发生了什么:我有以下2行代码的其他部分:
map<short,string> params;
params.insert( std::pair<short, string>(5, string("ee")) );
当我把它放入我的例行程序时,我在开头就得到了这个错误的错误,程序崩溃了。不完全清楚为什么它最终出现在字符串析构函数中。我的二进制文件可能有问题,但我有点困惑为什么它在开始时发生,为什么它在字符串析构函数中呢?下面的内容是否意味着我必须在其他地方寻找错误?
==2052== Conditional jump or move depends on uninitialised value(s)
==2052== at 0x6073EC2: std::basic_string<char, std::char_traits<char>, std::allocator<char> >::~basic_string() (in /usr/lib/libstdc++.so.6.0.13)
==2052== by 0x42428B: std::pair<short const, std::string>::~pair() (stl_pair.h:68)
==2052== by 0x4B99FB: NLGSearch::Search::Calc() (Search.cpp:409)
请注意,如果我使用map<short,short>
,它就会通过
谢谢。
----------------------------------------------- ----编辑
这在方法的开头使用。我想我有问题的答案,我必须在我的代码中查看其他地方...
lef@dxml:~$ more /etc/issue
Debian GNU/Linux 6.0 \n \l
lef@dxml:~$ g++ -v
Using built-in specs.
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Debian 4.4.5-8' --with-bugurl=file:///usr/share/doc/gcc-4.4/README.Bugs --enable-languages=c,c++,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.4 --enable-shared --enable-multiarch --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.4 --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-objc-gc --with-arch-32=i586 --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
Thread model: posix
gcc version 4.4.5 (Debian 4.4.5-8)
答案 0 :(得分:1)
它对我有用。该程序与您正在测试的程序有何不同?
#include <map>
#include <string>
int main () {
using std::map;
using std::string;
map<short,string> params;
params.insert( std::pair<short, string>(5, string("ee")) );
}
关于Ubuntu 10.04.3 LTS的gcc 4.4.3。没有来自valgrind的抱怨。