我在Boost C ++日期时间库中发现了一个奇怪的结果。 microsec_clock
和second_clock
之间存在不一致,我不明白为什么会这样。我使用的是Windows XP 32位
我的代码片段:
using namespace boost::posix_time;
...
ptime now = second_clock::universal_time();
std::cout << "Current Time is: "<< to_iso_extended_string(now)<< std::endl;
ptime now_2 = microsec_clock::universal_time();
std::cout << "Current Time is: "<< to_iso_extended_string(now_2)<< std::endl;
...
我预期的打印输出是没有毫秒和毫秒的当前时间。但是,我在电脑上的内容是:
2009-10-14T16:07:38 1970-06-24T20:36:09.375890
我不明白为什么在microsec_clock
时间内有一个正常的日期(1970年???)。 Boost的相关文档:link to boost date time
答案 0 :(得分:5)
不确定对你有什么不对;完全相同的代码对我有用。
$ cat > test.cc #include <boost/date_time/gregorian/gregorian.hpp> #include <boost/date_time/posix_time/posix_time.hpp> using namespace boost::posix_time; int main() { ptime now = second_clock::universal_time(); std::cout << "Current Time is: "<< to_iso_extended_string(now)<< std::endl; ptime now_2 = microsec_clock::universal_time(); std::cout << "Current Time is: "<< to_iso_extended_string(now_2)<< std::endl; return 0; } ^D $ c++ -lboost_date_time test.cc $ ./a.out Current Time is: 2009-10-14T16:26:55 Current Time is: 2009-10-14T16:26:55.586295
实施方面,second_clock
使用time
和microsec_clock
使用下面的gettimeofday
或GetSystemTimeAsFileTime
,具体取决于平台。您的平台出现了问题 - 您的操作系统和版本是什么?
你的Boost版本是什么?如果是1.38或更低,请升级到1.39或手动将修复应用于#2809。
--- boost/date_time/filetime_functions.hpp (revision 53621) +++ boost/date_time/filetime_functions.hpp (revision 53622) @@ -96,9 +96,7 @@ { /* shift is difference between 1970-Jan-01 & 1601-Jan-01 * in 100-nanosecond intervals */ - const uint64_t c1 = 27111902UL; - const uint64_t c2 = 3577643008UL; // issues warning without 'UL' - const uint64_t shift = (c1 << 32) + c2; + const uint64_t shift = 116444736000000000ULL; // (27111902 << 32) + 3577643008 union { FileTimeT as_file_time;
Windows FileTime与UNIX时间的偏移量不同,之前Boost中的代码在某些优化编译器中不会生成正确的偏移量差异。
答案 1 :(得分:1)
1970年的日期最有可能来自于unix time的表示方式,从1970年1月1日起的秒数。我猜这可能是以某种方式获得系统正常运行时间(以毫秒为单位)并将其解释为自1/1以来的秒数/ 1970年。这个日期会有4个多小时的正常运行时间。
答案 2 :(得分:1)
与second_clock
不同,microsec_clock::universal_time
文档提及:根据计算机设置返回UTC时间。
您应该检查硬件时钟设置(或者微软从哪里获取其值)。
编辑:
如果它与您的计算机设置无关,则必须是提升中的不当行为,我非常怀疑。