<small id='D30Lk'></small><noframes id='D30Lk'>

<i id='D30Lk'><tr id='D30Lk'><dt id='D30Lk'><q id='D30Lk'><span id='D30Lk'><b id='D30Lk'><form id='D30Lk'><ins id='D30Lk'></ins><ul id='D30Lk'></ul><sub id='D30Lk'></sub></form><legend id='D30Lk'></legend><bdo id='D30Lk'><pre id='D30Lk'><center id='D30Lk'></center></pre></bdo></b><th id='D30Lk'></th></span></q></dt></tr></i><div id='D30Lk'><tfoot id='D30Lk'></tfoot><dl id='D30Lk'><fieldset id='D30Lk'></fieldset></dl></div>

<tfoot id='D30Lk'></tfoot>

        • <bdo id='D30Lk'></bdo><ul id='D30Lk'></ul>
        <legend id='D30Lk'><style id='D30Lk'><dir id='D30Lk'><q id='D30Lk'></q></dir></style></legend>

      1. 检查 string::getline 中的 eof

        时间:2023-08-25
          <bdo id='v4NBR'></bdo><ul id='v4NBR'></ul>

        • <tfoot id='v4NBR'></tfoot>

                  <tbody id='v4NBR'></tbody>
                <legend id='v4NBR'><style id='v4NBR'><dir id='v4NBR'><q id='v4NBR'></q></dir></style></legend>

                  <i id='v4NBR'><tr id='v4NBR'><dt id='v4NBR'><q id='v4NBR'><span id='v4NBR'><b id='v4NBR'><form id='v4NBR'><ins id='v4NBR'></ins><ul id='v4NBR'></ul><sub id='v4NBR'></sub></form><legend id='v4NBR'></legend><bdo id='v4NBR'><pre id='v4NBR'><center id='v4NBR'></center></pre></bdo></b><th id='v4NBR'></th></span></q></dt></tr></i><div id='v4NBR'><tfoot id='v4NBR'></tfoot><dl id='v4NBR'><fieldset id='v4NBR'></fieldset></dl></div>
                1. <small id='v4NBR'></small><noframes id='v4NBR'>

                2. 本文介绍了检查 string::getline 中的 eof的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  如何使用 std::getline 函数检查文件结尾?如果我使用 eof() 它不会发出信号 eof 直到我尝试读取文件末尾.

                  How do I check for end-of-file using the std::getline function? If I use eof() it won't signal eof until I attempt to read beyond end-of-file.

                  推荐答案

                  C++ 中的规范阅读循环是:

                  The canonical reading loop in C++ is:

                  while (getline(cin, str)) {
                  
                  }
                  
                  if (cin.bad()) {
                      // IO error
                  } else if (!cin.eof()) {
                      // format error (not possible with getline but possible with operator>>)
                  } else {
                      // format error (not possible with getline but possible with operator>>)
                      // or end of file (can't make the difference)
                  }
                  

                  这篇关于检查 string::getline 中的 eof的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:在 C++ 中实现高性能顺序文件 I/O 的最快方法是什么? 下一篇:从目录中读取文件名

                  相关文章

                    <i id='U4JRF'><tr id='U4JRF'><dt id='U4JRF'><q id='U4JRF'><span id='U4JRF'><b id='U4JRF'><form id='U4JRF'><ins id='U4JRF'></ins><ul id='U4JRF'></ul><sub id='U4JRF'></sub></form><legend id='U4JRF'></legend><bdo id='U4JRF'><pre id='U4JRF'><center id='U4JRF'></center></pre></bdo></b><th id='U4JRF'></th></span></q></dt></tr></i><div id='U4JRF'><tfoot id='U4JRF'></tfoot><dl id='U4JRF'><fieldset id='U4JRF'></fieldset></dl></div>

                  1. <tfoot id='U4JRF'></tfoot><legend id='U4JRF'><style id='U4JRF'><dir id='U4JRF'><q id='U4JRF'></q></dir></style></legend>

                    <small id='U4JRF'></small><noframes id='U4JRF'>

                        <bdo id='U4JRF'></bdo><ul id='U4JRF'></ul>