2

当我使用c++处理文件时,我发现文件末尾总是有一个空行。有人说vim会在文件末尾附加一个'\ n',但是当我使用gedit时,它也有同样的问题。谁能告诉我原因?

1 #include<iostream> 
2 #include<fstream> 
3  
4 using namespace std; 
5 const int K = 10; 
6 int main(){ 
7         string arr[K];
8         ifstream infile("test1");
9         int L = 0;
10         while(!infile.eof()){
11             getline(infile, arr[(L++)%K]);
12         }
13         //line
14         int start,count;
15         if (L < K){
16             start = 0;
17             count = L;
18         }
19         else{
20             start = L % K;
21             count = K;
22         }
23         cout << count << endl; 
24         for (int i = 0; i < count; ++i)
25             cout << arr[(start + i) % K] << endl;
26         infile.close();
27         return 1;
28 }

while test1 file just:
abcd
but the program out is :
2
abcd

(upside is a blank line)
4

2 回答 2

3
while(!infile.eof())

infile.eof()只有在您尝试读取文件末尾之后才为真。因此,循环尝试多读一行,并在该尝试中得到一个空行。

于 2012-11-22T02:50:28.697 回答
1

这是一个顺序问题,您正在阅读、分配和检查之后......您应该稍微更改您的代码,以便阅读、检查和分配:

std::string str;
while (getline(infile, str)) {
    arr[(L++)%K] = str;
}

http://www.parashift.com/c++-faq-lite/istream-and-eof.html

c++中使用getline()时如何判断是否为EOF

于 2012-11-22T03:21:48.237 回答