我想使用一个没有夏令时的时区将boost::posix_time::ptime
转换为boost::local_time::local_date_time
,仅由它的偏移量指定为UTC。我正在使用boost 1.47.0
目前我正在尝试创建一个boost::local_time::custom_time_zone
(又名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个空字符串。
日期时间文档中的示例向您展示了如何创建不使用夏令时的自定义时区。你可以在http://www.boost.org/doc/libs/1_47_0/doc/html/date_time/examples.html#date_time.examples.simple_time_zone上看到它。
查看phx_1时区的代码。你基本上传入一个初始化为time_duration(0,0,0)的三个副本的dst_adjustment_offsets(第三个参数),并传入一个用于计算规则的空共享指针(第四个参数)。
(来自示例:)
// 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));