2

我正在使用以下代码获取当前日期时间(山地时间)

const boost::posix_time::ptime now = boost::posix_time::second_clock::local_time();

    //In mountain time I get now = 2013-Apr-08 20:44:22

现在我使用以下方法进行转换

ptime FeedConnector::MountaintToEasternConversion(ptime coloTime) 
{

      return boost::date_time::local_adjustor <ptime, -5, us_dst>::utc_to_local(coloTime);
} 

//这个函数假设给我纽约的时间(东部标准时间),我得到

2013-Apr-08 16:44:22

这个时间是错误的任何建议我哪里出错了?

4

1 回答 1

0

据我了解wrong time,这意味着它与预期相差一小时,即 -4 小时而不是预期的 -5 小时。如果是,那么问题是us_std类型被指向为local_adjustor声明的最后一个参数。如果指定no_dst而不是use_dst. 该代码按说明工作,差异为 -5 小时。以下代码演示它(链接到在线编译版本

#include <boost/date_time/posix_time/posix_time.hpp>
#include <boost/date_time/local_time_adjustor.hpp>
#include <iostream>

int main(void) {
   const boost::posix_time::ptime now = boost::posix_time::second_clock::local_time();
   const boost::posix_time::ptime adjUSDST = boost::date_time::local_adjustor<boost::posix_time::ptime, -5, boost::posix_time::us_dst>::utc_to_local(now);
   const boost::posix_time::ptime adjNODST = boost::date_time::local_adjustor<boost::posix_time::ptime, -5, boost::posix_time::no_dst>::utc_to_local(now);
   std::cout << "now: " << now << std::endl;
   std::cout << "adjUSDST: " << adjUSDST << std::endl;
   std::cout << "adjNODST: " << adjNODST << std::endl;
   return 0;
}
于 2013-04-09T07:32:54.373 回答