如何检查日期是否无效Boost C ++

时间:2015-04-06 18:34:53

标签: c++ date boost

大家好我试图使用一个函数来检查我的日期是否有效。

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()时我收到错误。 代码中是否有错误?

0 个答案:

没有答案