• <legend id='DYiAM'><style id='DYiAM'><dir id='DYiAM'><q id='DYiAM'></q></dir></style></legend>

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

        <tfoot id='DYiAM'></tfoot>

        • <bdo id='DYiAM'></bdo><ul id='DYiAM'></ul>

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

      1. 在 C++ 中使用 while 循环读取文件是如何工作的?

        How does reading file with while loops work in C++?(在 C++ 中使用 while 循环读取文件是如何工作的?)
        • <i id='8iw56'><tr id='8iw56'><dt id='8iw56'><q id='8iw56'><span id='8iw56'><b id='8iw56'><form id='8iw56'><ins id='8iw56'></ins><ul id='8iw56'></ul><sub id='8iw56'></sub></form><legend id='8iw56'></legend><bdo id='8iw56'><pre id='8iw56'><center id='8iw56'></center></pre></bdo></b><th id='8iw56'></th></span></q></dt></tr></i><div id='8iw56'><tfoot id='8iw56'></tfoot><dl id='8iw56'><fieldset id='8iw56'></fieldset></dl></div>
          <legend id='8iw56'><style id='8iw56'><dir id='8iw56'><q id='8iw56'></q></dir></style></legend>

          <small id='8iw56'></small><noframes id='8iw56'>

              <tbody id='8iw56'></tbody>

              <tfoot id='8iw56'></tfoot>
                <bdo id='8iw56'></bdo><ul id='8iw56'></ul>
                1. 本文介绍了在 C++ 中使用 while 循环读取文件是如何工作的?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  为什么可以使用while循环读取文件,例如

                  Why is it possible to read a file using a while loop such as

                  while (file >> variable)
                  

                  while (getline(xx, yy))
                  

                  >>getline 函数是否返回布尔值?

                  Do the >> and getline functions return boolean values ?

                  推荐答案

                  流操作符求值为对流本身的引用.这允许链接,例如<代码>文件>>变量 >>变量 >>变量.

                  The stream operators evaluate to a reference to the stream itself. This allows chaining e.g. file >> variable >> variable >> variable.

                  当您将其与流对象可转换为布尔值(其值为 true 如果没有设置错误标志)这一事实相结合时,是的,您会得到这种效果.

                  When you combine it with the fact that the stream object is convertible to boolean (whose value is true iff no error flags are set) and, yes, you get that effect.

                  这篇关于在 C++ 中使用 while 循环读取文件是如何工作的?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

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

                  相关文档推荐

                  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?)

                      <tbody id='TMAlQ'></tbody>
                        <bdo id='TMAlQ'></bdo><ul id='TMAlQ'></ul>

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

                        • <small id='TMAlQ'></small><noframes id='TMAlQ'>