FSTREAM类成员变量

fstream class member variable

本文关键字:变量 成员 FSTREAM      更新时间:2023-10-16

我花了几个小时在较大的代码中跟踪错误。我将其压缩到一个小文件中。我需要将Fstream用作清洁代码的模因变量。在线资源说这应该有效。我还尝试使用.open()初始化fstream,但没有成功。我正在用G 编译Ubuntu 16.04。

#include <string>
#include <fstream>
#include <iostream>
using namespace std;
class read{
    private:            
        ifstream infile;
    public:
        read(string fileName): infile(fileName.c_str());}
        ~read(){infile.close();}
};
int main(){
    string fileName = "./test/FileCreator/SourceTEST.cpp";
    read r = read(fileName);
return 0;
}

编译器错误

/usr/include/c++/5/bits/ios_base.h: In copy constructor ‘std::basic_ios<char>::basic_ios(const std::basic_ios<char>&)’:
/usr/include/c++/5/bits/ios_base.h:855:5: error: ‘std::ios_base::ios_base(const std::ios_base&)’ is private
     ios_base(const ios_base&);
     ^
In file included from /usr/include/c++/5/ios:44:0,
                 from /usr/include/c++/5/istream:38,
                 from /usr/include/c++/5/fstream:38,
                 from smallTestRead.cpp:2:
/usr/include/c++/5/bits/basic_ios.h:67:11: error: within this context
     class basic_ios : public ios_base
           ^
In file included from smallTestRead.cpp:2:0:
/usr/include/c++/5/fstream: In copy constructor ‘std::basic_ifstream<char>::basic_ifstream(const std::basic_ifstream<char>&)’:
/usr/include/c++/5/fstream:455:11: note: synthesized method ‘std::basic_ios<char>::basic_ios(const std::basic_ios<char>&)’ first required here 
     class basic_ifstream : public basic_istream<_CharT, _Traits>
           ^
In file included from /usr/include/c++/5/ios:43:0,
                 from /usr/include/c++/5/istream:38,
                 from /usr/include/c++/5/fstream:38,
                 from smallTestRead.cpp:2:
/usr/include/c++/5/streambuf: In copy constructor ‘std::basic_filebuf<char>::basic_filebuf(const std::basic_filebuf<char>&)’:
/usr/include/c++/5/streambuf:804:7: error: ‘std::basic_streambuf<_CharT, _Traits>::basic_streambuf(const std::basic_streambuf<_CharT, _Traits>&) [with _CharT = char; _Traits = std::char_traits<char>]’ is private
       basic_streambuf(const basic_streambuf&);
       ^
In file included from smallTestRead.cpp:2:0:
/usr/include/c++/5/fstream:72:11: error: within this context
     class basic_filebuf : public basic_streambuf<_CharT, _Traits>
           ^
/usr/include/c++/5/fstream: In copy constructor ‘std::basic_ifstream<char>::basic_ifstream(const std::basic_ifstream<char>&)’:
/usr/include/c++/5/fstream:455:11: note: synthesized method ‘std::basic_filebuf<char>::basic_filebuf(const std::basic_filebuf<char>&)’ first required here 
     class basic_ifstream : public basic_istream<_CharT, _Traits>
           ^
smallTestRead.cpp: In copy constructor ‘read::read(const read&)’:
smallTestRead.cpp:7:7: note: synthesized method ‘std::basic_ifstream<char>::basic_ifstream(const std::basic_ifstream<char>&)’ first required here 
 class read{
       ^
smallTestRead.cpp: In function ‘int main()’:
smallTestRead.cpp:17:24: note: synthesized method ‘read::read(const read&)’ first required here 
  read r = read(fileName);

read r = read(fileName);在C 11之前的c 版本上首先创建一个未命名的class read实例,然后使用复制构造函数将其复制到r中。C 的标准IO流是不可复制的,这使得不可复制。因此,您尝试使用复制构造函数的错误。

c 11上方的版本将使用移动构造函数,该构造器将使该代码有效,因为标准IO流是可移动但不可复制的。使用read r(fileName);将阻止所有版本使用任何一个构造函数,而是将r构造到位。

流对象不可复制,因此您不能说:

  read r = read(fileName);

对于包含流对象的read对象。另外,这是:

read(string fileName): infile(fileName.c_str());}

应该是:

read(string fileName): infile(fileName.c_str()) {}