大家好,又见面了,我是你们的朋友全栈君。
在看c++中fstream时,突然想到一个问题。当读取完整个文件之后如果再想读取一遍该如何去写?首先想到seekg()函数把读指针重定位到文件开头。但是我试了一下发现指针并没有移动,后来才搞清楚原来是当读指针指到EOF后就没办法再进行指针的控制了。
#include<iostream>
#include<fstream>
#include<string>
using namespace std;
int main()
{
fstream outFile("test.txt");
if(!outFile.is_open())
{
exit(EXIT_FAILURE);
}
string str;
int x = 3;
while (x--)
{
cin >> str;
str += "\r\n";
outFile.write(str.c_str(), str.length());
}
outFile.close();
fstream inFile;
inFile.open("test.txt");
if (!inFile.is_open())
{
cout << "open infile error" << endl;
}
char buffer[32];
int size = sizeof(buffer);
while (inFile.getline(buffer, size))
{
cout << buffer << endl;
}
cout << "second" << endl;
inFile.clear();
inFile.seekg(0, ios::beg);
string read_line;
while (getline(inFile, str))
{
cout << str << endl;
}
inFile.close();
system("pause");
return 0;
}
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/132945.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...