我正在尝试编写一个程序,它只读取我的文本文件的第一行,然后将该数字输入到int变量中。但我很困惑如何做到这一点。
int highscore; // Starting highscore
ifstream myfile ("highscore.txt");
if (myfile.is_open())
{
while ( myfile.good() )
{
getline(myfile,highscore);
cout << highscore << endl;
}
myfile.close();
}
但由于某些原因,我得到了错误。 |25|error: no matching function for call to 'getline(std::ifstream&, int&)'|
答案 0 :(得分:1)
如果用以下内容替换getline:
if (myfile >> highscore)
cout << "Read " << highscore << '\n';
else
cout << "Couldn't read an int\n";
你将能够将int读入高分。你需要使用getline吗?