我正在为基于文本的游戏编写高分子程序。这是我到目前为止所拥有的。
void Game::loadHiScores(string filename)
{
fstream hiscores(filename.c_str()); // what flags are needed?
int score;
string name;
Score temp;
if (hiscores.is_open())
{
for (size_t i = 0; i < TOTAL_HISCORES && !(hiscores.eof()); ++i)
{
cin >> score >> name;
temp.addPoints(score);
temp.scoreSetName(name);
hiScores.push_back(temp);
}
}
else
{
//what should go here?
}
hiscores.close();
}
我怎样才能做到这一点:
如果文件存在,则应打开读取
否则应创建文件
谢谢你的时间
最佳答案
我会说错误的逻辑。我想你想要:
Try to open an ifstream (not an fstream) containing scores
if it opened
read high scores into array
close stream
else
set array to zero
endif
Play Game - adjust high scores in array, then on exit
Try to open scores ofstream (not an fstream) for writing
if it opened
write high scores
close stream
else
report an error
end if
如果您使用 ifstreams 和 ofstreams,则不需要特殊标志,或者可能必须在文件中查找 - 您只需重写整个内容。
关于c++ - 初学者 C++ - 如果存在则打开文本文件进行读取,如果不存在,则将其创建为空,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2834566/