Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
为了文件读取,如何传入文件对象作为参考?
现在我有以下内容:
istream& operator>> (istream &in, File &file) { }
但这给了我一个“未声明文件”的错误。我究竟做错了什么?
这看起来根本不对。使用 C++ 流从文件中读取时,文件是第一个参数(istream& in),第二个参数是您打算使用文件中的数据填充的对象。
istream& in
该File is not declared错误表明您为第二个参数指定的“文件”数据类型不存在。
File is not declared