这是 C ++入门第5版书的第17章(17.5.3)中的示例代码。
int main(void) {
fstream inOut("test.txt", fstream::ate | fstream::in | fstream::out);
if (!inOut)
{
cerr << "Unable to open file!" << endl;
return EXIT_FAILURE;
}
auto end_mark = inOut.tellg();
inOut.seekg(0, fstream::beg);
size_t cnt = 0;
string line;
while (inOut && inOut.tellg() != end_mark && getline(inOut, line))
{
cnt += line.size() + 1;
auto mark = inOut.tellg();
inOut.seekg(0, fstream::end);
inOut << cnt;
if (mark != end_mark)
{
inOut << " ";
}
inOut.seekg(mark);
}
inOut.seekg(0, fstream::end);
inOut << "\n";
return 0;
}
文件test.txt
的内容为:
abcd
efg
hi
j
<This is a blank new line>
关键是,如果此文件以空行结束,则此代码按预期工作。换句话说,它会将文件更改为:
abcd
efg
hi
j
5 9 12 14
<This is a blank new line>
但是,如果文件没有以空行换行结束,它将输出如下:
abcd
efg
hi
j5 9 12
请注意,此文件不会以新行结尾。 我的问题是空白的新线在哪里?毕竟,有代码
inOut << "\n";
在任何情况下都应该添加一个新的空白行。哪里错了?
答案 0 :(得分:2)
问题在于,通过到达文件末尾,设置了流的坏位。如果你添加
for (var i=0, i<2, i++) {
$(".card").click(function() {
clickedList[i] = $(this).children().attr("class");
});
}
在最终的inOut&lt;&lt;之前&#34; \ n&#34;新行是按预期编写的,但是没有新行的行的长度仍然没有添加。