未在此范围内声明“ getline”,这是什么意思?

时间:2019-04-24 21:27:50

标签: qnx

在编译时,我没有在此范围内声明“ getline”

编译下一个代码:

string PostCmd::getFailedFromFile()
{
    string failedList;
    ifstream file(FILE, ifstream::in);
    if (file.is_open())
    {
        getline(file, failedList);
        file.close();
    }
    else
    {
        cout << "Unable to open file";
    }
    return failedList;
}

1 个答案:

答案 0 :(得分:0)