我正在学习C++
并制作一个简单的应用程序,我有以下代码将std::string
解析为ptime
:
ptimePointer CsvHelper::string_to_ptime(const std::string& s, const int mode,
timePointer pt)
{
const std::locale formats[] = {
std::locale(std::locale::classic(),new boost::posix_time::time_input_facet("%d/%m/%Y H:%M:%S")),
std::locale(std::locale::classic(),new boost::posix_time::time_input_facet("%H:%M"))
};
std::istringstream is(s);
is.imbue(formats[mode]);
is >> *pt;
}
return pt;
问题在于,如果我传递一封信"a"
,则会创建一个ptime
,其中包含一个特殊值“not-a-date-time”。
好的,所以我查看文档并了解如果我使用默认构造函数创建ptime
我得到的ptime
具有相同类型。因此,在我的代码中,我使用以下代码验证了输入:
boost::posix_time::ptime ptime;
if (*this->myDate != ptime)
{
...
} else
{
treat the problem;
}
我觉得这不是一个明确的解决方案,验证这个日期的更好方法是什么?
答案 0 :(得分:0)
ptime有一个is_not_a_date_time()函数。 所以你可以做到
if(myDate.is_not_a_date_time())
do_something();