我有一个包含秒的double
。我想将其转换为struct tm
。
我找不到实现此目的的标准函数。我需要手动填写struct tm
吗?
我只是关于转换为time_t
的accidentally asked this,除非我将其链接,否则http://www.StackOverflow.com不会让我发布。
最佳答案
好吧,您之前不小心问了正确的问题。将double
转换为time_t
,然后将其转换为struct tm
。无论如何,struct tm
中没有亚秒字段。
关于c++ - 将double转换为struct tm,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31000677/