我是C ++的相对新手,尽管我确实对Java有一点经验。 尝试解决以下问题;(这是我的大学一项更大任务的一部分)
class myCustomer :public Customer {/.../}
class myFlight:public Flight {/.../}
class myEmployee :public Employee {/.../}
class myPlane :public Plane {/.../}
所以Customer是一个接口,而myCustomer是具有实现的派生类,其余的都一样。(我必须那样使用它)
此后是某航空公司的数据库API;
class MyImplementation{
//I want to link id's to an object so i can call object pointer using a given id
map <string,myCustomer*> customers_map;
map <string,myEmployee*> employees_map;
map <string,myReservation*> reservations_map;
map <string,myPlane*> planes_map;
map <string,myFlight*> flights_map;
...
//must implement this function
virtual Customer* addCustomer(string full_name, int priority){
if(!customers_loaded){
load_customers();
}
auto curr_customer = new myCustomer(id,full_name,priority);
customers_map.insert(pair<string,myCustomer*>(id,curr_customer));
}
void load_customers(){
vector<string> parameters;
string line;
fstream customers_file;
customers_file.open(CUSTOMER_INFO_PATH,fstream::out);
//check if null is returned
if (!customers_file.is_open()) {
throw "Error:cannot open employees file";
}
//iterate over lines
while(getline(customers_file,line)){
//just a function to split a line from file to a vector
parameters=splitLine(line,SPLITTER);
try{
customer_from_string(parameters);
}catch(...){
//could not load current object
cout << "Could not load customer "<< parameters[0] <<
"(line number:"<< lineNumber << ")" <<endl;
continue;
}
}
customers_file.close();
}
void customer_from_string(vector<string> parameters){
string id = parameters[0];
string name = parameters[1];
int priority = stoi(parameters [2];
auto curr_customer = new myCustomer(id,name,priority);
customers_map.insert(pair<string,myCustomer*>(id,curr_customer));
}
void employee_from_string(vector<string>& parameters,
map<string, string>& toLink) {
//get parameters
string employee_id = parameters[0];
Jobs job = string_to_job(parameters[1]);
int seniority = stoi(parameters[2]);
int year = stoi(parameters[3]);
string employer_id = parameters[4];
//check if employee_id is legal
if (employer_id.empty()) {
throw "Employer ID cannot be an empty argument";
}
auto curr_employee = new myEmployee(employee_id, job, seniority,year);
//add to employee map
employees_map.insert(pair<string, myEmployee *>(employee_id, curr_employee));
}
/** more code**/
因此,我试图从文本文件中读取参数,并使用诸如customer_from_string,employee_from_string之类的匹配函数创建指定的对象,而我必须为其他类(飞机,预订,航班...)进行此操作 每个都有其自己的构造函数,带有不同数量的参数。 这些类之间的唯一连接是它们都实现了具有功能的ID接口:
virtual string getID() = 0;
尝试避免以下代码重复(因此,我不会为每个对象创建加载函数):
void load_employees() {
/** same code as load_customers**/
//iterate over lines
while (getline(employees_file, line)) {
//as before
parameters = splitLine(line, SPLITTER);
try {
/*the only change - it has different implementation than customer_from_string*/
employee_from_string(parameters);
} catch (...) {
/** print error **/
}
}
/** as before **/
}
我了解我需要使用工厂设计模式来解决此问题。(因为我需要动态创建文本文件中列出的对象,因此每次打开程序时都将它们加载到数据库中) 所以我考虑实施以下方法:
class Factory {
virtual void create(vector<string>& parameters,
map<string,Factory*>&id_map,/*..more parameters*/)=0;
}
并让load方法使用上面的create方法来决定要创建哪个对象(也许发送一个char作为标识符), 让每个类实现工厂接口,然后使用create函数,如下所示:
//Implementation for customer
void create(vector<string>& parameters,map<Factory *, string>&
toLink,map<string,Factory*>& id_map){
string id = parameters[0];
string name = parameters[1];
int priority = stoi(parameters [parameters.size()-1]);
auto curr_customer = new myCustomer(id,name,priority);
id_map.insert(pair<string,Factory *>(id,curr_customer));
}
所以我认为我需要将地图更改为
map <string,Factory *> objectName_map;
现在我有点卡住了,因为地图持有指向工厂对象的指针,而我想使用地图ID来执行以下操作:
virtual Customer* getCustomer(string id){ //must implement this function
if(!customers_loaded){
load('Customers');
}
return customers_map.find(id)->second;
}
而且我不能为每个对象调用任何内部函数,之后说:
void setEmployer(Employee* employer){//...//}
由于地图上有Factory *。 我试图将地图保持原样,但无法在create函数中使用它们,因为它无法将myCustomer *对象转换为Factory *。 我有点迷失了自己,试图在网上找到解决方案,但是没有运气,尽管我觉得自己实施这个错误。 预先感谢您对此的任何帮助!
*编辑帖子以使问题更清楚
答案 0 :(得分:0)
因此,您真正需要的是一个“工厂”模板:
template<typename T>
pair<string, shared_ptr<T>>
from_string_vector(const vector<string>& parameters);
具有明确的专长,例如:
template<>
pair<string, shared_ptr<myCustomer>>
from_string_vector(const vector<string>& parameters) {
string id = parameters[0];
string name = parameters[1];
int priority = stoi(parameters [2]);
return make_pair(id, make_shared<myCustomer>(
id, name, priority));
}
和通用函数,如:
template<typename T>
void load_database(map<string, shared_ptr<T>>& objectMap,
const string& filename) {
vector<string> parameters;
string line;
ifstream file(filename);
while (getline(file, line)) {
parameters = splitLine(line, SPLITTER);
objectMap.insert(from_string_vector<T>(parameters));
}
}
然后为您所有的地图和文件名调用此函数6次?