如何使用 boost 将日期时间格式化为字符串?
我想使用 boost 将日期/时间格式化为字符串。
从当前日期/时间开始:
ptime now = second_clock::universal_time();
并以包含以下格式的日期/时间的 wstring 结束:
%Y%m%d_%H%M%S
您能向我展示实现此目的的代码吗?谢谢。
I want to format a date/time to a string using boost.
Starting with the current date/time:
ptime now = second_clock::universal_time();
and ending up with a wstring containing the date/time in this format:
%Y%m%d_%H%M%S
Can you show me the code to achieve this? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
无论它的价值如何,这里是我为此编写的函数:
该程序的输出是:
我发现这些链接很有用:
For whatever it is worth, here is the function that I wrote to do this:
The output of this program was:
I found these links useful: