我有一个基类和一个派生类。目前,我正在分别阅读每个文件,即carfile和sportsCarFile。然后将它们作为成员加载以用于其他目的。我试图了解如何读取单个文件,然后正确读取文件中的每一行,调用正确的加载函数。下面是数据的表格:
Car/SportsCar CarName Age Colour Price
Car Abbort 8 Yellow 899.99
SportsCar Aufdi 7 Brown 989.99
Car ATX 5 White 9823.23
Car POL 3 Yellow 8232.33
这是当前的代码:
#include "stdafx.h"
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
class Car{
public:
Car();
virtual void Load(ifstream& carFile);
virtual int LoadString(string filename);
void display();
protected:
string CarName;
int Age;
string Colour;
double Price;
int countCars;
Car *ptrToCarList;
};
class SportsCar : public Car
{
public:
SportsCar();
virtual void LoadSports(ifstream& carFile);
virtual int LoadString(string filename);
void displayLoad();
void display();
protected:
int engineSize;
SportsCar *ptrToSportsCarList;
int countCars;
};
Car::Car()
{
CarName = "Unknown";
countCars = 0;
}
void Car::Load(ifstream& carFile)
{
carFile >> CarName >> Age >> Colour >> Price;
}
int Car::LoadString(string filename)
{
ifstream inFile(filename);
if (!inFile)
{
cout << "Sorry, file not found" << endl;
return -1;
}
ptrToCarList = new Car[countCars];
for (int i = 0; i < countCars; i++)
{
ptrToCarList[i].Load(inFile);
}
inFile.close();
return 0;
}
void Car::display()
{
cout << CarName << " " << Age << " " << Colour << " " << Price << " " ;
}
void SportsCar::displayLoad()
{
Car::display();
cout<<engineSize<<endl;
}
void SportsCar::display()
{
for (int i = 0; i < countCars; i++)
{
ptrToSportsCarList[i].displayLoad();
}
}
void SportsCar::LoadSports(ifstream& carFile){
Car::Load( carFile);
carFile >> engineSize;
}
SportsCar::SportsCar()
{
CarName = "Unknown";
countCars = 0;
}
int SportsCar::LoadString(string filename)
{
ifstream inFile(filename);
if (!inFile)
{
cout << "Sorry, file not found" << endl;
return -1;
}
countCars = 2;
ptrToSportsCarList = new SportsCar[countCars];
for (int i = 0; i < countCars; i++)
{
ptrToSportsCarList[i].LoadSports(inFile);
}
inFile.close();
return 0;
}
int main()
{
SportsCar example2;
example2.LoadString("sportsCarFile.txt");
example2.display();
return 0;
}
答案 0 :(得分:1)
我会创建一个函数来读取汽车,然后返回相应的类型(使用shared_ptr
,这样我们就不需要管理内存了):
shared_ptr<Car> loadCar(ifstream& in)
{
string type;
in >> type; // is this syntax right? I don't use C++ very often
shared_ptr<Car> car;
if (type == "SportsCar") {
car = new SportsCar();
} else if (type == "Car") {
car = new Car();
} else {
throw [some sort of exception?];
}
car.load(in);
}
我认为这叫做工厂。优点是你的Car
解析代码会弄清楚它是什么类型的汽车,因此在使用API时你不需要考虑它:
ifstream f(filename);
vector<shared_ptr<Car>> cars;
while (!f.eof()) {
cars.push_back(loadCar(f));
}
请注意,Car::load()
和SportsCar::load()
都应该返回单汽车,而不是像当前Car
类一样返回它们的列表。我选择使用vector
,因为它们很容易使用。你的课程也过于复杂。
所以,我会把你的课改成这个:
class Car{
public:
Car();
virtual ~Car();
virtual void load(ifstream& carFile);
virtual void display();
protected:
string name;
int age;
string colour;
double price;
};
class SportsCar : public Car
{
public:
SportsCar();
virtual void load(ifstream& carFile);
virtual void display();
protected:
int engineSize;
};
甚至更好,overload operator<<()
,所以你可以cout << car
。
答案 1 :(得分:0)
你通过文件,foreach行读取并创建一个汽车。
关于你的设计:
您需要一个列表/向量来存储汽车 例如带有此成员的CarStore(std :: vector cars和函数loadAll(string csvfile)。
一辆车没有车载....
如果它是一个“真实世界”的例子,我会考虑使用数据库和/或OR Mapper。如果只是为了学习,继续......
在您尝试加载CSV文件时,为您提供了许多有用的提示: