gpt4 book ai didi

c++ - 生成带有分数和时区的完整 iso 日期时间表示字符串

转载 作者:塔克拉玛干 更新时间:2023-11-03 07:38:56 24 4
gpt4 key购买 nike

我想打印一个符合 ISO 8601 标准的字符串,格式为ISO 中的完整日期时间表示

4.3.2 Complete representations

1985-04-12T10:15:30Z 结合

4.2.2.4 Representations with decimal fraction

23:20:50,5

按照允许的方式组合

4.3.3 Representations other than complete

19850412T101530,42+041985-04-12T10:15:30.32Z 的形式

使用当前(挂钟) boost 日期时间,但我什至不了解如何使用 boost 文档打印当前时间的简单日期时间字符串。

最佳答案

你说你想打印“current (wall clock)”但是你的例子说“1985”?...

以下将以 ISO 格式打印当前时间:

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

int main()
{
auto now = boost::posix_time::microsec_clock::universal_time();

std::cout << to_iso_extended_string(now) << std::endl;
}

输出:

2019-04-26T07:52:34.533296

注意:ISO 时间始终采用 UTC 时区,因此您只需在其后附加“Z”(祖鲁语)后缀即可。

有关更多详细信息,请参阅 Posix_time documentation .

关于c++ - 生成带有分数和时区的完整 iso 日期时间表示字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55862788/

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