私のコードはこちら
#include <iostream>
#include <fstream>
using namespace std;
struct a
{
int x;
int b;
};
int main ()
{
ifstream rfile("test.bin", ios::binary);
a ob;
//Reading from the file for the first time works fine.
rfile.read((char*)&ob, sizeof(ob));
while (rfile)
{
cout<<ob.x<<endl;
rfile.read((char*)&ob, sizeof(ob));
}
rfile.seekg(0, ios::beg);
cout<<"G:"<<rfile.tellg()<<endl; //Outputs -1
rfile.read((char*)&ob, sizeof(ob));
while (rfile)
{
cout<<ob.x<<endl;
rfile.read((char*)&ob, sizeof(ob));
}
return 0;
}
出力は
3
1
G:-1
最初のループと同様に、seekg() を使用した後でもポインターの位置が -1 であるため、2 番目のループは機能しません。なぜこうなった ?