gpt4 book ai didi

c++ - 将秒数转换为时间

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:45:46 26 4
gpt4 key购买 nike

有没有办法将秒数(例如 3056144 sec,这是时间增量而不是时间)转换为 YYYY-mm-dd HH:MM:SS 格式的时间?

我尝试使用 localtime 将秒数转换为 struct tm,然后减去 UNIX 开始时间 (1970-01-01),但这不起作用正如预期的那样。

提前致谢。

附言我必须使用 C++03,而不是 C++11。

最佳答案

如果使用 Boost.Date_Time是您的一个选择,这可能是您正在寻找的:

#include <boost/date_time.hpp>

using boost::posix_time::seconds;
using boost::posix_time::to_simple_string;

std::cout << to_simple_string(seconds(3056144)) << std::endl;

这将打印:

848:55:44

但是,正如您在上面的输出中看到的,它不会告诉您已经过去了多少年。这是有充分理由的,因为一年并不总是 365 天。

关于c++ - 将秒数转换为时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25017335/

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