gpt4 book ai didi

c++ - 字符串和 fstream 的问题

转载 作者:太空宇宙 更新时间:2023-11-04 14:16:44 25 4
gpt4 key购买 nike

我目前正在做一个项目,我需要实现几个类来模拟自助餐厅。每个在线等候取餐的“学生”都有 5 个描述他们的变量,即:姓名、组别、主菜类型、小吃/甜点类型,以及代表他们计划购买的沙拉数量的数字以盎司为单位。 这个想法是,所有这些信息都将使用文本文件中的 fstream 读取(大纲遵循特定顺序并为每个学生重复)。每个学生都读完后,我将学生推到队列中以模拟他们排队等候。

我的问题有两点,首先,当使用 getline() 函数读取每一行时,我试图将这一行存储在一个临时变量中,以便将其插入构造函数中学生类(class),然后将该拷贝插入队列。这似乎是不允许的,因为当我尝试存储信息时,它说“没有运算符‘=’匹配这些操作数。”

我遇到的另一个问题是读取沙拉值(value)的盎司,这是一个整数值,我搜索过但没有找到任何方法直接读取数值并将其传递给整数变量.抱歉解释冗长,但我想确保我说清楚了,感谢任何帮助。

这是我尝试执行此操作的部分代码:

string temp_name;
string temp_group;
string temp_entree;
string temp_snack;
int temp_salad;


string line2;
queue<student> line;
ifstream myfile ("students.txt");
if(myfile.is_open())
while(myfile.good())
{
temp_name= getline(myfile, line2);
temp_group= getline(myfile, line2);
temp_salad= getline(myfile, line2);
temp_entree= getline(myfile, line2);
temp_snack= getline(myfile, line2);

student s(temp_name, temp_group, temp_entree, temp_snack, temp_salad);
//.....
}

最佳答案

getline() 返回 istream& ,这只是从中提取行后的第一个参数。它将行读入第二个参数(在您的示例中为 line2)。所以,它应该看起来像这样:

getline(myfile, name);
getline(myfile, group);
// ...

此外,getline读入字符串,因此您需要将该字符串转换为整数,然后再将其存储在 temp_salad 中.有几种方法可以做到这一点,其中最简单的是

getline(myfile, temp);
salad = atoi(temp.c_str());

只需确保 #include <cstdlib>在该文件中。

关于c++ - 字符串和 fstream 的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10509839/

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