gpt4 book ai didi

在 C 中计算 future 的纪元时间

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

我想计算当前日期后 3 个月后的大纪元时间。以下代码为我提供了当前代码:

time_t t = time(0);   // get time now
printf("Time=%ld\n", t);

是否有任何 Linux/Unix api 可以获取此信息?注:会考虑闰年和月日的变化。计算将根据当前系统时区设置和日历(Linux 操作系统)谢谢。

最佳答案

原则上,localtime()mktime() 的组合将允许您这样做:

time_t now = time(0);
struct tm *tp = localtime(&now);
tp->tm_mon += 3;
time_t then = mktime(tp);

mktime()函数也会对tp的成员进行适当的调整。试验月底发生的事情(例如 11 月 30 日 + 3 个月)。有一个“你得到你得到的”(或者“你得到你应得的”)的元素;将月份添加到日期是一个不明确的操作。如果您的 mktime() 没有达到您认为需要的效果,那么您需要考虑是自己编写还是搜索一个可以满足您需要的功能。您绝对应该拥有一套包含已知答案的综合测试用例,并验证您的 mktime() 是否产生了您希望它产生的答案。

例如:

#include <stdio.h>
#include <time.h>

static void check_time(time_t now, int n_months)
{
struct tm *tp = localtime(&now);
char time_buf[64];
printf("%10lu + %d months\n", (unsigned long)now, n_months);
strftime(time_buf, sizeof(time_buf), "%Y-%m-%d %H:%M:%S", tp);
printf(" %10lu = %s\n", (unsigned long)now, time_buf);
tp->tm_mon += n_months;
time_t then = mktime(tp);
strftime(time_buf, sizeof(time_buf), "%Y-%m-%d %H:%M:%S", tp);
printf(" %10lu = %s\n", (unsigned long)then, time_buf);
}

int main(void)
{
time_t times[] =
{
1322504430, // 2011-11-28 10:20:30 -08:00
1322590830, // 2011-11-29 10:20:30 -08:00
1322677230, // 2011-11-30 10:20:30 -08:00
1417198830, // 2014-11-28 10:20:30 -08:00
1417285230, // 2014-11-29 10:20:30 -08:00
1417371630, // 2014-11-30 10:20:30 -08:00
1391192430, // 2014-01-31 10:20:30 -08:00
};

enum { NUM_TIMES = sizeof(times) / sizeof(times[0]) };

for (int i = 0; i < NUM_TIMES; i++)
check_time(times[i], 3);

return 0;
}

Mac OS X 10.10 的示例输出:

1322504430 + 3 months
1322504430 = 2011-11-28 10:20:30
1330453230 = 2012-02-28 10:20:30
1322590830 + 3 months
1322590830 = 2011-11-29 10:20:30
1330539630 = 2012-02-29 10:20:30
1322677230 + 3 months
1322677230 = 2011-11-30 10:20:30
1330626030 = 2012-03-01 10:20:30
1417198830 + 3 months
1417198830 = 2014-11-28 10:20:30
1425147630 = 2015-02-28 10:20:30
1417285230 + 3 months
1417285230 = 2014-11-29 10:20:30
1425234030 = 2015-03-01 10:20:30
1417371630 + 3 months
1417371630 = 2014-11-30 10:20:30
1425320430 = 2015-03-02 10:20:30
1391192430 + 3 months
1391192430 = 2014-01-31 10:20:30
1398968430 = 2014-05-01 11:20:30

如果您不喜欢 1 月 31 日之后的 3 个月是 5 月 1 日(以及 2 月 1 日之后的 3 个月),那么 Mac OS X 10.10 版本的 mktime() 不是那个给你。

关于在 C 中计算 future 的纪元时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26729497/

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