1

Valgrind 告诉我我的代码中有一个错误,但我找不到它......这是一个代码片段:

22 int main(int argc, char *argv[]){
...
//argv[1] contains the name of a file
int length=atoi(argv[2]);
map<string, double> Map;
char* Key;
Key = new char [length+1];
...

我也使用过Key[length]='\0',但这似乎不会影响其余代码。

现在我用从文件中获取的条目填充地图(其中包含键和值行的列表。键的维度总是低于长度。

while( file_stream >> Key >> Value){
Map[Key]=Value;
....
}

在这一点上,我打电话给:

cout << Key  << " has value ";
159   cout << Map[Key] << endl;

该程序编译和执行得很好,但是 Valgrind 给出了很多这种类型的错误:

==6921== Conditional jump or move depends on uninitialised value(s)
==6921==    at 0x56274A0: __printf_fp (printf_fp.c:404)
==6921==    by 0x562396A: vfprintf (vfprintf.c:1622)
==6921==    by 0x5648C81: vsnprintf (vsnprintf.c:120)
==6921==    by 0x4EB64AE: ??? (in /usr/lib/libstdc++.so.6.0.13)
==6921==    by 0x4EB9002: std::ostreambuf_iterator<char, std::char_traits<char> > std::num_put<char, std::ostreambuf_iterator<char, std::char_traits<char> > >::_M_insert_float<double>(std::ostreambuf_iterator<char, std::char_traits<char> >, std::ios_base&, char, char, double) const (in /usr/lib/libstdc++.so.6.0.13)
==6921==    by 0x4EB9328: std::num_put<char, std::ostreambuf_iterator<char, std::char_traits<char> > >::do_put(std::ostreambuf_iterator<char, std::char_traits<char> >, std::ios_base&, char, double) const (in /usr/lib/libstdc++.so.6.0.13)
==6921==    by 0x4ECCC9E: std::ostream& std::ostream::_M_insert<double>(double) (in /usr/lib/libstdc++.so.6.0.13)
==6921==    by 0x40366E: main (MyProgram.cpp:159)
==6921==  Uninitialised value was created by a stack allocation
==6921==    at 0x401C61: main (MyProgram.cpp:22)

你有什么想法吗?我宁愿不发布所有长代码(请不要为此责备)

谢谢!!

4

1 回答 1

1

堆栈跟踪意味着您正在格式化double. 除非您明确地将未初始化的对象插入其中,否则double无法从中获得未初始化对象(即使中不存在,也将使用 进行初始化)。这可能指向实现中的一段有趣的代码:我将使用一个简单的测试程序验证该报告是否确实可以使用,例如:Map[Key]doubleKeyMapdouble()__printf_fp()

#include <iostream>
int main() {
    std::cout << 3.14;
}

...如果是这样,我会忽略来自valgrind. 在一个非常平静的下午,可能很容易深入研究的实现,__printf_fp()以找出它在哪里做了一些有问题的事情并确定它是否真的很重要(不过,我不会赌这件事会发生在我身上:我宁愿实现浮点然而,格式化自己可能需要一个下午以上的时间,因为这显然很重要)。

于 2013-10-05T19:51:10.250 回答