关于ifstream在c ++中的seekg()函数的问题?

ipk*_*iss 1 c++ file

我正在测试以下代码:

int _tmain(int argc, _TCHAR* argv[])
{
    int sum = 0;
    int x;
    ifstream inFile;

    inFile.open("test.txt");
    if (!inFile) {
        cout << "Unable to open file";
        exit(1); // terminate with error
    }

    while (inFile >> x) {
        cout << x << endl;
    }
    cout << "-----------------------------" << endl;
    // Reading from beggining file again
    inFile.seekg(0, ios::beg);
    while (inFile >> x) {
        cout << x << endl;
    }

    inFile.close();

    return 0;
}
Run Code Online (Sandbox Code Playgroud)

在上面的代码中,我想读取文件,然后将指针移动到文件的开头并再次读取.我曾经inFile.seekg(0, ios::beg);回到文件的开头,但它不起作用?有人可以帮帮我吗?谢谢

Xeo*_*Xeo 14

在开始寻找之前,需要清除所有错误标志,否则不会对流进行任何操作:

inFile.clear();
inFile.seekg(0,std::ios::beg);
Run Code Online (Sandbox Code Playgroud)

那是因为该eof位将被设置,因为您之前到达了文件的末尾.


Chr*_*ica 5

我认为你必须通过inFile.clear()重置ifstream的错误标志.否则它仍然认为它已到达文件的末尾.