我正在制作一个将多条记录保存在一个文件中的程序。我有代表不同记录的不同类和另一个类,一个管理文件的模板类。
template <class DataType> class Table
{
public:
Table(const char* path);
bool add(const DataType& reg);
template <class FilterType> void print(const FilterType& filter) const
{
DataType reg;
...
if (reg == filter)
{
cout << reg << endl;
}
...
}
private:
const char* path;
};
class Student
{
public:
char cods[5];
char noms[20];
};
class Course
{
public:
char codc[5];
char nomc[20];
};
class Rating
{
public:
char cods[5];
char codc[5];
int prom;
}
我必须打印一个学生以及一门课程中所有学生的评分。像这样的东西:
Table<Rating> trat("path.dat");
trat.print("A001") //print the ratings for student A001.
trat.print("C001") //print the students for course C001.
所有帮助将不胜感激。
- - - 编辑 - - - -
好的,谢谢你的回答。我使用 cstrings 是因为我需要为类中的每个成员设置一个固定大小,因为我要将这些类写入文件。
我想要完成的是制作一个适用于任何类型或记录的模板类表。
我一直在想的是我可以使用运算符重载进行比较和输出。
像这样的东西:
class Student
{
public:
char cods[5];
char noms[25];
class CodsType
{
public:
CodsType(const string& cods) : cods(cods) {}
operator string() const { return cods; }
string cods;
};
};
class Course
{
public:
char codc[5];
char nomc[20];
class CodcType
{
public:
CodcType(const string& codc) : codc(codc) {}
operator string() const { return codc; }
string codc;
};
};
class Rating
{
public:
char cods[5];
char codc[5];
int prom;
bool operator==(const Course::CodcType& codc) const
{
return (this->codc == string(codc));
}
bool operator==(const Student::CodsType& cods) const
{
return (this->cods == string(cods));
}
};
接着:
Table<Rating> trat("path.dat");
trat.print(Student::CodsType("A001")) //print the ratings for student A001.
trat.print(Course::CodcType("C001")) //print the students for course C001.
但问题是我必须为每个过滤器做一个类。有更好的方法来做到这一点吗?