我想使用时区将boost::posix_time::ptime
转换为boost::local_time::local_date_time
而没有夏令时,只有它的偏移量才能指定UTC。我正在使用提升1.47.0
。
目前我正在尝试创建boost::local_time::custom_time_zone
(a.k.a custom_time_zone_base<char>
)。该类模板的唯一构造函数如下:
custom_time_zone_base(
const time_zone_names& zone_names,
const time_duration_type& utc_offset,
const dst_adjustment_offsets& dst_shift,
boost::shared_ptr<dst_calc_rule> calc_rule);
我应该提供dst_shift
和calc_rule
个参数?或者是否有另一个更适合我需求的课程,因为我还提供zone_names
作为boost::local_time::time_zone_names
初始化为4个空字符串。
答案 0 :(得分:1)
日期时间文档中的示例显示如何在没有DST的情况下创建自定义时区。你可以在http://www.boost.org/doc/libs/1_47_0/doc/html/date_time/examples.html#date_time.examples.simple_time_zone看到它。
查看phx_1时区的代码。您基本上将初始化为d__adjustment_offsets的dst_adjustment_offsets传递给time_duration(0,0,0)(第3个参数)的三个副本,并传入一个空的共享指针作为计算规则(第4个参数)。
(来自例子:)
// create more dependent objects for a non-dst custom_time_zone
time_zone_names tzn2("Mountain Standard Time", "MST", "", ""); // no dst means empty dst strings
time_duration utc_offset2(-7,0,0);
dst_adjustment_offsets adj_offsets2(time_duration(0,0,0),
time_duration(0,0,0),
time_duration(0,0,0));
// no dst means we need a null pointer to the rules
shared_ptr<dst_calc_rule> phx_rules;
// create the custom_time_zones
time_zone_ptr phx_1(new custom_time_zone(tzn2, utc_offset2,
adj_offsets2, phx_rules));