From 70fb25143fb19c77b95afc4676c33a0b90ea74ac Mon Sep 17 00:00:00 2001 From: Francis <455954986@qq.com> Date: Sun, 10 Apr 2022 17:36:44 +0800 Subject: [PATCH] Update RAII.md --- codingStyleIdioms/3_RAII/RAII.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/codingStyleIdioms/3_RAII/RAII.md b/codingStyleIdioms/3_RAII/RAII.md index f12e794..36cf3c8 100644 --- a/codingStyleIdioms/3_RAII/RAII.md +++ b/codingStyleIdioms/3_RAII/RAII.md @@ -66,7 +66,7 @@ vector read_lines_from_file(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); } @@ -89,7 +89,7 @@ int main(int argc, char* argv[]) { 输出: ```cpp -File makefile contains 38 lines. +File makefile contains 37 lines. ``` 这看起来很简单。`vector`被填满、返回和调用。然而,作为关心性能的高效程序员,这方面的一些问题困扰着我们:在return语句中,由于使用了值语义,`vector`在销毁之前不久就被复制到一个新`vector`中。 @@ -104,7 +104,7 @@ vector * read_lines_from_file(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); } @@ -147,7 +147,7 @@ vector * read_lines_from_file(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); } @@ -265,7 +265,7 @@ unique_ptr> read_lines_from_file(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); } @@ -309,4 +309,4 @@ RAII代表“资源获取是初始化”。 > 1.https://www.toptal.com/software/eliminating-garbage-collector#remote-developer-job -> 2.https://stackoverflow.com/questions/2321511/what-is-meant-by-resource-acquisition-is-initialization-raii \ No newline at end of file +> 2.https://stackoverflow.com/questions/2321511/what-is-meant-by-resource-acquisition-is-initialization-raii