好的,所以我使用这种字符串流技术从 .txt 文件中提取对象的类型、日期、分数等,然后在我的代码中将其推回向量中。我的问题是输入文件中的日期为 YYYY/MM/DD 格式,我需要将其切换为 MM/DD/YYYY,但不熟悉如何操作。有人告诉我使用子字符串方法会起作用,但我是 C++ 的新手,所以有人知道如何解决我的这个问题吗?
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);
}