gpt4 book ai didi

c++ - 我的字母字符串管理器无法正确保存到文件中

转载 作者:行者123 更新时间:2023-11-30 03:46:17 28 4
gpt4 key购买 nike

我有一个函数,我想获取一个文件,查看文件中的单词,按字母顺序排列它们并用它替换文件。到目前为止,我已经可以按字母顺序获取单词。问题是,它只将最后一个词保存到文件中。这是我当前的代码:

void thingy(string Item)
{
fstream File; // Open the file, save the sorted words in it, and then close it.
File.open("Data/Alphabet.txt", ios::out | ios::in);
File << Item;
File.close();
}




void Alphabetical_Order(string Text_File)
{

fstream file;
file.open(Text_File); // Open the file that we are going to organize
std::set<std::string> sortedItems; // The variable that we will store the sorted words in


fstream words; // To see how many words are in the file
words.open(Text_File);
int Words = 0;
do
{
string word;
words >> word;
Words++;
} while (!words.eof());




for (int i = 1; i <= Words; ++i) // Set a loop to take the words out of the file and put them in our variable
{
std::string Data;
file >> Data;
Data = Data + " ";
sortedItems.insert(Data);
}





std::for_each(sortedItems.begin(), sortedItems.end(), thingy);
}

有人知道如何解决这个问题吗?

最佳答案

当您在 thingy 中打开 fstream 时,也尝试使用 ios::ate 标志打开。这将允许您将文本附加到文件,而不是每次调用该函数时都重写。

也就是说,您不应该在每次调用该函数时都打开和关闭文件。也许传递对从函数 thingy 外部管理的 fstream 的引用。

希望对您有所帮助。

关于c++ - 我的字母字符串管理器无法正确保存到文件中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34166162/

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