gpt4 book ai didi

c - 如何检查实际时间是否在字符串格式的时间范围之间

转载 作者:行者123 更新时间:2023-11-30 14:35:58 26 4
gpt4 key购买 nike

我在树莓派上使用 C 并尝试执行以下操作:在 .txt 文件中有 2 个时间和 2 个日期(在 4 个不同的行中)。我要检查实际时间是否在这些日期时间之间。所以在 C 中我有:

  1. Data.time1(字符)包含:00:00:00
  2. Data.time2(字符)包含:23:59:59
  3. Data.date1(字符)包含:1970-01-01
  4. Data.date2(字符)包含:1970-01-01
  5. Timenow (int) 包含当前时间的 Unix 值

我尝试了很多选项,但我想我不得不使用 struct tm ,我不太明白。

有人可以帮我做一些实用的事情吗?

最佳答案

这是一个例子:

void example(char *t1, char *d1, char *t2, char *d2)
{
// t= "23:59:59"
// d= "1970-01-01"
struct tm from, to;
time_t t_from, t_to, t_now;

from.tm_year= atoi(d1)-1900; // Year (current year minus 1900)
from.tm_mon= atoi(d1+5)-1; // Month (0–11; January = 0)
from.tm_mday= atoi(d1+8); // Day of month (1–31)
from.tm_hour= atoi(t1); // Hours since midnight (0–23)
from.tm_min= atoi(t1+3); // Minutes after hour (0–59)
from.tm_sec= atoi(t1+6); // Seconds after minute (0–59)
t_from= mktime(&from); // now it is a numeric value

to.tm_year= atoi(d2)-1900; // Year (current year minus 1900)
to.tm_mon= atoi(d2+5)-1; // Month (0–11; January = 0)
to.tm_mday= atoi(d2+8); // Day of month (1–31)
to.tm_hour= atoi(t2); // Hours since midnight (0–23)
to.tm_min= atoi(t2+3); // Minutes after hour (0–59)
to.tm_sec= atoi(t2+6); // Seconds after minute (0–59)
t_to= mktime(&to);

t_now= time(0);

printf("%s\n",asctime(&from));
printf("%s\n",asctime(&to));
printf("%s\n",ctime(&t_now));

if (t_from <= t_now && t_now <= t_to)
printf("yes\n");
else
printf("no\n");
}

关于c - 如何检查实际时间是否在字符串格式的时间范围之间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58268480/

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