我是C ++的新手。这是实际运行的程序的一部分,没有内存泄漏。它读取一行计算每行/每行的两倍(aux_d),如果它等于暗(维度),则将push_back计入向量。
读取行,然后重绕istringstream fss。但是当我打印我的v_db [i](vector_database)时,它只会将零加载到坐标类中。
coordinates aux_c;
double aux_d;
...做的事情然后
while(std::getline(filestream,line)){
i=0;
std::istringstream fss(line);
while( fss >> aux_d )
i++;
if (i != dim){
std::cerr << "Wrong Tiberium_Base coordinates // "
<< "Check line -"
<< lc
<< "-"
<< std::endl;
lc++;
continue;
}
fss.seekg(0);
fss >> aux_c;
v_db.push_back(aux_c);
lc++;
}
所以我这样做只是为了让它发挥作用。
std::istringstream fss2(line);
fss2 >> aux_c;
v_db.push_back(aux_c);
lc++;
我想知道这里到底发生了什么,因为我之前使用过同样目的的seekg,并没有任何问题(实际上在这个程序中)。感谢。
答案 0 :(得分:2)
完成循环后。
while( fss >> aux_d )
i++;
fss
已设置failbit
。在使用流之前,您需要清除它。
while( fss >> aux_d )
i++;
...
// Clear the error states of the stream.
fss.clear();
fss.seekg(0);
fss >> aux_c;