我正在遍历一个包含单词作为键的映射,并且每个单词都有一堆分配的数字存储在vector<int>
指示它们是在哪一行找到的。我无法在 .txt 文件中输出该信息。
在文件中出现足够多的单词后,程序崩溃了。
经过一些简短的测试,我发现错误发生在明显的地方,即在将最终信息输出到 .txt 文件时。
经过一番谷歌搜索后,唯一相关的信息片段是有人简短地说不应该在循环中使用 ofstream 。我想它可能会以某种方式导致溢出?也许没有冲洗的东西?
那么出了什么问题,为什么?我该如何解决这个问题?
//FINAL OUTPUT TO A FILE, CREATING A NEW .txt FILE
ofstream filehandle;
filehandle.open("result.txt",ios::out);
if( filehandle.is_open() )
{
for(map<string, vector<int> >::const_iterator a = line_num_by_word.begin();a!=line_num_by_word.end();++a)
{
filehandle << "The word " << "\"" << a->first << "\"" << " is present on: \n";
vector<int>::const_iterator int_vec_c_it = a->second.begin();
while( int_vec_c_it != a->second.end() )
{
vector<int>::const_iterator in_front_of_it = int_vec_c_it+1;
//count the number of times
int counter = 1;
while( *(int_vec_c_it)==*(in_front_of_it) )
{
++counter;
++in_front_of_it;
}
filehandle << " line " << *(int_vec_c_it) << "-" << counter << " times ";
int_vec_c_it = in_front_of_it;
}
filehandle << "\n";
}
}else cout << "no output" <<endl;