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

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

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

      <tfoot id='wff5T'></tfoot>

      使用 ifstream 检查文件是否成功打开

      Checking if a file opened successfully with ifstream(使用 ifstream 检查文件是否成功打开)

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

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

              <tbody id='lOiwk'></tbody>
          • <legend id='lOiwk'><style id='lOiwk'><dir id='lOiwk'><q id='lOiwk'></q></dir></style></legend>

              • 本文介绍了使用 ifstream 检查文件是否成功打开的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                我有以下内容可以打开文件进行阅读.但是,我想检查以确保文件已成功打开,因此我使用失败来查看标志是否已设置.但是,我不断收到以下错误:

                I have the following that will open a file for reading. However, I want to check to make sure that the file was open successfully, so I am using the fail to see if the flags have been set. However, I keep getting the following error:

                我是 C++ 新手,因为我来自 C.所以不确定我是否理解这个错误:

                I am new to C++, as I am coming from C. So not sure I understand this error:

                不能调用成员函数‘bool std::basic_ios<_CharT,_Traits>::fail() const [with _CharT = char, _Traits = std::char_traits]' 无对象

                cannot call member function ‘bool std::basic_ios<_CharT, _Traits>::fail() const [with _CharT = char, _Traits = std::char_traits]’ without object

                代码:

                int devices::open_file(std::string _file_name)
                {
                    ifstream input_stream;
                
                    input_stream.open(_file_name.c_str(), ios::in);
                
                    if(ios::fail() == true) {
                        return -1;
                    }
                
                    file_name = _file_name;
                
                    return 0;
                }
                

                推荐答案

                你可以简单地这样做:

                int devices::open_file(std::string _file_name)
                {
                    ifstream input_stream;    
                    input_stream.open(_file_name.c_str(), ios::in);
                    if(!input_stream)
                    {
                        return -1;
                    } 
                    file_name = _file_name;
                    return 0;
                }
                

                fail() 不是静态方法,你必须在一个实例上而不是一个类型上调用它,所以如果你想使用fail(),请将 !input_stream 替换为 input_stream.fail() 在我上面的代码中.

                fail() is not a static method, you must call it on an instance not a type, so if you want to use fail(), replace !input_stream with input_stream.fail() in my code above.

                我确实想知道你在这里想达到什么目的.您正在打开文件并立即再次关闭它.你只是想检查文件是否存在?

                I do have to wonder what you're trying to achieve here. You're opening the file and immediately close it again. Are you simply trying to check if the file exists?

                这篇关于使用 ifstream 检查文件是否成功打开的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

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

                相关文档推荐

                Is Type(::x); valid?(是类型(::x);有效的?)
                Difference between an inline function and static inline function(内联函数和静态内联函数的区别)
                Compilation fails randomly: quot;cannot open program databasequot;(编译随机失败:“无法打开程序数据库)
                Too many initializers error for a simple array in bcc32(bcc32 中的简单数组的初始值设定项过多错误)
                No Member named stoi in namespace std(命名空间 std 中没有名为 stoi 的成员)
                Error using a constexpr as a template parameter within the same class(在同一个类中使用 constexpr 作为模板参数时出错)

              • <tfoot id='VUztJ'></tfoot>
                  <legend id='VUztJ'><style id='VUztJ'><dir id='VUztJ'><q id='VUztJ'></q></dir></style></legend>

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

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

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