gpt4 book ai didi

c++ - 使用 Ifstream 将文本文件中的数字添加到 C 样式数组

转载 作者:塔克拉玛干 更新时间:2023-11-03 07:35:13 25 4
gpt4 key购买 nike

我对上面的标题有疑问。我尝试了以下方法,但它的行为不正确。

void ArrayIntStorage::read(ifstream& in)
{
if(in.is_open())
{
while(!in.eof())
{
in.getline(arrayStorage, sizeof(in));
}
}
}

ofstream& ArrayIntStorage::write(ofstream &out) const
{
for (int i = 0; i < sizeof arrayStorage; i++)
{
out << arrayStorage[i] << endl;
}
return out;
}

我是 C++ 编程的新手,所以我可能在做一些愚蠢的事情。提前致谢。

最佳答案

我猜你正在读/写一个整数数组。看起来您可能错误地读取了 sizeof(in),而不是 read 方法中的 sizeof(arrayStorage)。

关于c++ - 使用 Ifstream 将文本文件中的数字添加到 C 样式数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5717101/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com