当我在我的ubuntu中运行时,我得到了最低结果。怎么会出错呢?结果年份不可能是1970年,并且当我将ms
重新转换回来时,结果是不一样的。但是当我在http://coliru.stacked-crooked.com/运行时它很好。
#include <boost/date_time/gregorian/gregorian.hpp>
#include <boost/date_time/posix_time/posix_time.hpp>
#include <string>
#include <iostream>
int main()
{
using namespace boost::posix_time;
ptime time_t_epoch(boost::gregorian::date(1970,1,1));
auto ms = (boost::posix_time::microsec_clock::local_time() - time_t_epoch).total_microseconds();
std::cout << "ms: " << ms << std::endl;
std::cout << "ms: " << boost::posix_time::microseconds(ms).total_microseconds() << std::endl;
ptime newTime = time_t_epoch + boost::posix_time::microseconds(ms);
std::cout << boost::posix_time::to_iso_string(time_t_epoch) << std::endl;
std::cout << boost::posix_time::to_iso_string(newTime) << std::endl;
std::stringstream ss;
ss << newTime;
std::cout << ss.str()<< std::endl;
}
结果:
ms: 1424976249761218
ms: 4576956085582
19700101T000000
19700222T232236.085582
1970-Feb-22 23:22:36.085582
机器环境= Ubuntu 12 + cmake 2.8.7 +提升1.48.0.2
答案 0 :(得分:0)
1970/01/01 + 4576956085582微秒 - &gt; 1970年2月22日是正确的
1970/01/01 + 1424976249761218微秒 - &gt; 2015年2月26日所以ms
大概是正确的
不正确的是
boost::posix_time::microseconds(ms).total_microseconds() != ms
虽然我不确定,但可能与此错误https://svn.boost.org/trac/boost/ticket/3487有关。