gpt4 book ai didi

c++ - 使用 boost::date_time 在当前时区获取当前时间的最简单方法?

转载 作者:IT老高 更新时间:2023-10-28 23:13:26 24 4
gpt4 key购买 nike

如果我在命令行 (Debian/Lenny) 上执行 date +%H-%M-%S,我会得到一个用户友好的(不是 UTC,不是 DST-less,时间 a正常人在他们的 watch 上)打印时间。

使用 boost::date_time 获得相同内容的最简单方法是什么?

如果我这样做:

std::ostringstream msg;

boost::local_time::local_date_time t =
boost::local_time::local_sec_clock::local_time(
boost::local_time::time_zone_ptr()
);

boost::local_time::local_time_facet* lf(
new boost::local_time::local_time_facet("%H-%M-%S")
);

msg.imbue(std::locale(msg.getloc(),lf));
msg << t;

那么 msg.str() 比我想看的时间早了一个小时。我不确定这是否是因为它显示 UTC 或本地时区时间而没有 DST 更正(我在英国)。

修改上述内容以产生 DST 校正的本地时区时间的最简单方法是什么?我有一个想法,它涉及 boost::date_time::c_local_adjustor 但无法从示例中弄清楚。

最佳答案

这就是我想要的:

  namespace pt = boost::posix_time;
std::ostringstream msg;
const pt::ptime now = pt::second_clock::local_time();
pt::time_facet*const f = new pt::time_facet("%H-%M-%S");
msg.imbue(std::locale(msg.getloc(),f));
msg << now;

关于c++ - 使用 boost::date_time 在当前时区获取当前时间的最简单方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2612938/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com