下一个程序有什么问题?我更喜欢文件到达末尾。
ifstream file("main.cpp", ios::binary | ios::ate);
if (file) {
//fstream::pos_type size = file.tellg();
file.seekg(100, fstream::cur);
if (file.eof()) {
cout << "eof is true\n";
}
}
fstream 到达文件末尾,但为什么不回显“eof 为真”。