Update c++_example1.cpp

This commit is contained in:
Francis 2022-04-10 17:35:59 +08:00 committed by GitHub
parent 92dd0fe190
commit 03ee450eef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,7 +12,8 @@ vector<string> read_lines_from_file(string &file_name) {
string line;
ifstream file_handle (file_name.c_str());
while (file_handle.good() && !file_handle.eof()) {
// file_handle.peek()!=EOF 解决多读一行问题
while (file_handle.good() && !file_handle.eof() && file_handle.peek()!=EOF) {
getline(file_handle, line);
lines.push_back(line);
}
@ -26,7 +27,8 @@ vector<string> * read_lines_from_file1(string &file_name) {
string line;
ifstream file_handle (file_name.c_str());
while (file_handle.good() && !file_handle.eof()) {
// file_handle.peek()!=EOF
while (file_handle.good() && !file_handle.eof() && file_handle.peek()!=EOF) {
getline(file_handle, line);
lines->push_back(line);
}
@ -40,7 +42,7 @@ vector<string> * read_lines_from_file1_1(string &file_name) {
string line;
ifstream file_handle (file_name.c_str());
while (file_handle.good() && !file_handle.eof()) {
while (file_handle.good() && !file_handle.eof() && file_handle.peek()!=EOF) {
getline(file_handle, line);
lines->push_back(line);
}
@ -63,4 +65,4 @@ int main() {
int count1 = read_lines_from_file1_1(file_name1)->size();
cout << "File " << file_name << " contains " << count1 << " lines.";
return 0;
}
}