大家好我试图使用一个函数来检查我的日期是否有效。
std::string dateString = "2015," + contentMonth + "," + contentDay;
date d(from_string(dateString));
if(d.is_not_a_date()) //this is not working... why?
return true;
else
return false;
但是当它通过d.is_not_a_date()时我收到错误。 代码中是否有错误?