gpt4 book ai didi

c++ - ifstream,getline返回一个内存地址

转载 作者:行者123 更新时间:2023-11-30 01:47:03 24 4
gpt4 key购买 nike

我有以下代码:

std::ifstream report( fileToRead );
cout << "leyendo archivo: " << fileToRead << endl;
std::string line;
cout << std::getline(report,line) << endl;
report.close();

但是 cout 给出以下结果:0x28fe64 我能做什么?

最佳答案

基于此引用,http://www.cplusplus.com/reference/string/string/getline/ .

getline函数返回对 ifstream 的引用对象,这就是您打印地址的原因。

你需要cout << line;打印出阅读的内容。

我也没有重复你的错误,你使用的是哪个版本的g++和操作系统?我的g++如下:

Configured with: --prefix=/Applications/Xcode.app/Contents/Developer/usr --with-gxx-include-dir=/usr/include/c++/4.2.1 Apple LLVM version 6.1.0 (clang-602.0.53) (based on LLVM 3.6.0svn) Target: x86_64-apple-darwin14.3.0 Thread model: posix

#include <fstream>
#include <iostream>
using namespace std;

int main(int argc, char * argv[]){
char * fileToRead= "a.txt";
std::ifstream report( fileToRead );
cout << report << endl;

cout << "leyendo archivo: " << fileToRead << endl;
std::string line;
cout << std::getline(report,line) << endl;
cout << std::getline(report,line) << endl;
cout << std::getline(report,line) << endl;
cout << std::getline(report,line) << endl;
cout << std::getline(report,line) << endl;
cout << std::getline(report,line) << endl;
report.close();
}

我得到的结果是:

1
leyendo archivo: a.txt
1
1
1
0
0
0

好像是把ifstream转换成了boolean变量,表示ifstream是否有文件操作错误。最后的三个零是因为没有更多的行可读。

关于c++ - ifstream,getline返回一个内存地址,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32146602/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com