我想解析文件的内容并加载到地图中。
这是文件内容格式:
Movie-name release-year price cast ishd
"DDLG" 2010 20.00 "shahrukh and Kajal" true
"Aamir" 2008 10.00 "abc, xyz and ijkl" false
地图的关键将是第一个单词(电影名称)。
类定义:
class movieInfo
{
private:
int releaseYear;
double price;
string cast;
bool isHD;
};
这是我试图实现的功能。
void fill_map_contents (map <string, movieInfo*> &mymap, ifstream& myfile)
{
string line;
string word;
while (getline(myfile, line))
{
out << "inside while loop " << line << endl;
stringstream tokenizer;
tokenizer << line;
movieInfo *temp = new movieInfo;
while (tokenizer >> word)
{
cout << " printing word :->"<< word << endl;
//temp->releaseYear = atoi(word);
//temp->price = 12.34;
//temp->cast = "sahahrukh salman";
//temp->isHD = false;
mymap[word] = temp;
}
delete temp;
}
}
在while(tokenizer >> word)之后,我不知道如何填充对象变量并将其分配给map。
任何帮助将不胜感激。
德韦什