我正在尝试编写一个将日期作为字符串返回的函数。我是这样处理的:
string date() // includes not listed for sake of space, using namespace std
{
tm timeStruct;
int currentMonth = timeStruct.tm_mon + 1;
int currentDay = timeStruct.tm_mday;
int currentYear = timeStruct.tm_year - 100;
string currentDate = to_string(currentMonth) + "/" + to_string(currentDay) + "/" + to_string(currentYear);
return currentDate;
}
这给出了四个编译时错误。其中 1 个:
to_string was not declared in this scope
其中3个:
Function to_string could not be resolved
每次使用 to_string 一个。
根据互联网上的其他任何地方,这段代码应该可以工作。有人可以对这个主题有所了解吗?