【发布时间】:2017-03-06 02:28:44
【问题描述】:
我正在为我的 c++ 课做这个作业,我已经做了几个小时了,但没有取得任何进展。我已经对我的问题进行了大量搜索,但没有任何效果。我来这里是为了解决我的问题。
我有一个名为“hw2data.txt”的文件,其中包含 25 行信息,我现在正试图将它简单地输出到控制台,但我的作业说我需要使用一组 Student(我的班级名称) 保存25个对象 在main函数中,程序从数据文件中读取数据,调用Student类的成员函数设置成员变量并输出结果。
我希望能够在进入函数并将它们添加到结果之前完全输出文件中的文本。
TXT 文件
10001 Alice Brown 89 85 92 99 90
10004 Bob Bush 85 76 83 79 83
10010 Carl Capra 65 57 73 68 76
10012 David Lieberman 76 68 79 81 58
10034 John Menchin 100 89 95 93 88
10056 George Smith 86 78 90 80 95
10062 Elaine Sanders 85 79 90 80 95
10078 Jack Cunningham 72 78 82 97 84
10090 Susie Brown 68 85 80 84 83
10099 Marvella Garcia 86 92 88 97 98
10120 Tony Peterson 85 84 83 90 76
10129 John Jones 75 75 80 84 80
10131 Mary Evans 60 72 89 86 65
10146 Nancy Drew 78 80 75 90 85
10152 Lola Zapeta 89 81 98 89 97
10155 Duckey Donald 82 60 73 78 55
10163 Goof Goofy 89 78 75 89 56
10168 Brave Balto 100 98 93 89 92
10178 Snow Smitn 93 76 54 83 80
10184 Alice Wonderful 86 79 87 78 67
10192 Samina Akthar 85 62 78 45 60
10207 Simba Green 50 45 35 60 20
10211 Donald Egger 76 80 83 68 81
10216 Brown Deer 86 87 89 79 75
10245 Johny Jackson 96 85 91 83 79
学生课堂档案
#include <iostream>
#include <fstream>
#include <string>
#include "Student.h"
using namespace std;
void Student::setID(int tID)
{
ID = tID;
}
void Student::setFName(string f)
{
firstName = f;
}
void Student::setLName(string l)
{
lastName = l;
}
void Student::setScores()
{
}
int Student::getID()
{
return ID;
}
string Student::getFName()
{
return firstName;
}
string Student::getLName()
{
return lastName;
}
int Student::getWeightedTotal()
{
return 0;
}
int Student::getGrade()
{
return 0;
}
void Student::printStudent()
{
}
Student::Student()
{
ID = 0;
firstName = "";
lastName = "";
}
Student::Student(int tID, string f, string l)
{
setID(tID);
setFName(f);
setLName(l);
}
Main.cpp 文件
#include <iostream>
#include <fstream>
#include <string>
#include "Student.h"
using namespace std;
int main() {
Student students;
Student sa[25];
ifstream inFile;
inFile.open("hw2data.txt");
system("pause");
return 0;
}
我已经尝试了多种方法来让它工作,我得到的主要错误是 “二进制'>>':没有找到采用'重载函数'类型的右手操作数的运算符(或没有可接受的转换)” 请帮忙
【问题讨论】:
-
这里有一个可能有帮助的快速阅读:Input/Output operators overloading in C++
-
您声称您尝试了多种方法来使其工作,但您在此处显示的是仅打开文件的代码。你具体尝试了什么?我们可以提供帮助,但我们无法为您完成这项作业。
-
我已经尝试了多种方法,我并不是要求为我完成它,我在许多这些堆栈线程上看到了相同的响应。我曾尝试使用诸如“inFile >> students.getID;”之类的代码来显示文件的第一部分,也尝试使用 getline 但我不是很熟悉。我正在寻找的是有人解释使用类对象数组将此文件打印到控制台所需的内容。我以前从未这样做过,我希望有人通过解释或展示示例来帮助我理解。