gpt4 book ai didi

c++ seekg 似乎返回一个十六进制地址而不是 .txt 文件中的实际字符

转载 作者:塔克拉玛干 更新时间:2023-11-03 02:21:57 26 4
gpt4 key购买 nike

我截取了一段简单的代码,我正在尝试学习如何使用 C++ 库阅读纯文本。在与程序相同的目录中,我得到了 text1.txt,其中包含多行 ASCII 纯文本。运行代码后,我期望从 text1.txttextOut.txt 获得相同的字符,相反,在 textOut.txt 我有 100 行

0x7ffdf21fd018 0x7ffdf21fd018 0x7ffdf21fd018 0x7ffdf21fd018 0x7ffdf21fd018 0x7ffdf21fd018 0x7ffdf21fd018 0x7ffdf21fd018 0x7ffdf21fd018 0x7ffdf21fd018 0x7ffdf21fd018 0x7ffdf21fd018 0x7ffdf21fd018 0x7ffdf21fd018 0x7ffdf21fd018 0x7ffdf21fd018

代码如下:

#include <cstdlib>
#include <stdio.h>
#include <stdlib.h>
#include <fstream>
using namespace std;

int main() {

fstream afile;
afile.open("text1.txt", ios::in );
ofstream outfile;
outfile.open("textOut.txt");
int counter=0;
for( counter=0;counter<100;counter++ ){
outfile << afile.seekg(counter);
outfile << "\n";
//printf("%d\n", counter);
}

return 0;
}

最佳答案

seekg returns *this ,所以令人惊讶的是 <<运算符在这种情况下完全有效。

宁可使用

outfile << static_cast<char>(afile.get());

完整程序:

#include <cstdlib>
#include <stdio.h>
#include <stdlib.h>
#include <fstream>
using namespace std;

int main()
{

fstream afile;
afile.open("text1.txt",ios::in);
ofstream outfile;
outfile.open("textOut.txt");
int counter=0;
for (counter=0; counter<100; counter++) {

afile.seekg(counter);
outfile << static_cast<char>(afile.get());
//outfile << afile.seekg(counter);
outfile << "\n";
//printf("%d\n", counter);
}

return 0;
}

关于c++ seekg 似乎返回一个十六进制地址而不是 .txt 文件中的实际字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36684574/

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