1
好的,所以我使用這種stringstream技術來從.txt文件中提取對象類型,日期,分數等稍後在我的代碼中將其推回到一個向量中。 我的問題是,從輸入文件的日期是YYYY/MM/DD格式,我需要將其切換到MM/DD/YYYY,但我不熟悉如何這樣做。我已經被告知使用子字符串方法可行,但我是C++的新手,所以有人有一個想法如何解決我的這個問題?日期格式操作(YYYY/MM/DD-to-MM/DD/YYYY)
void LineData :: Set_Line (const string s)
{
stringstream temp (s);
temp >> type;
temp >> date;
string max;
temp >> max;
max_score = atoi (max.c_str());
string actual;
temp >> actual;
actual_score = atof (actual.c_str());
ws(temp);
getline(temp, name);
}