gpt4 book ai didi

c++ - 将 time_t 转换为 int

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:11:19 25 4
gpt4 key购买 nike

我想将给定时间转换为 epoch(time_t),反之亦然。谁能告诉我这是什么例程或算法?

谢谢

更新

 epoch_strt.tm_sec = 0;
epoch_strt.tm_min = 0;
epoch_strt.tm_hour = 0;
epoch_strt.tm_mday = 1;
epoch_strt.tm_mon = 1;
epoch_strt.tm_year = 70;
epoch_strt.tm_isdst = -1;

double nsecs = difftime(curtime, basetime);//current time from system, I converrting it to struct tm

但出于某种原因,这总是返回 32399。

最佳答案

您应该将其转换为 long int 而不是 int

long int t = static_cast<long int> (time(NULL));

int 可能不足以保存时间,例如,在我的平台上,time_ttypedef __int64.

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

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