<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

        checking for eof in string::getline(检查 string::getline 中的 eof)
          <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的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  What is inside .lib file of Static library, Statically linked dynamic library and dynamically linked dynamic library?(静态库、静态链接动态库和动态链接动态库的 .lib 文件里面是什么?)
                  How do I load a C DLL from the SXS in Python?(如何从 Python 中的 SXS 加载 C DLL?)
                  Can Cython code be compiled to a dll so C++ application can call it?(Cython 代码可以编译成 dll 以便 C++ 应用程序可以调用它吗?)
                  Delay Loading DLLs(延迟加载 DLL)
                  Throwing C++ exceptions across DLL boundaries(跨 DLL 边界抛出 C++ 异常)
                  Loading a dll from a dll?(从 dll 加载 dll?)
                    <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>
                      <tbody id='U4JRF'></tbody>

                    • <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>