gpt4 book ai didi

c++ - 如何比较格式为 "Month Date hh:mm:ss"的两个时间戳以检查 +ve 或 -ve 值

转载 作者:太空狗 更新时间:2023-10-29 19:59:04 26 4
gpt4 key购买 nike

我在 stackoverflow 网站上查看了我的答案,我没有得到,所以我把它贴在这里。

我的问题是:

How to compare two time stamp in format "Month Date hh:mm:ss"?

我正在用 C 和 C++ 编写程序,时间是可显示的字符串格式。

示例:

time1 = "Mar 21 11:51:20"
time2 = "Mar 21 10:20:05"

我想比较 time1 和 tme2 并找出 time2 是否在之后 time1 并且我需要输出为 true false,如下所示:

 if time2 > time1 then 
i need output as 1
or
0 or -1 anything

我使用了 difftime(time2,time1) ,但它返回 time1time2 之间的增量时间 diff >.
我想检查是否更大。

如有任何帮助,请提前致谢

最佳答案

首先-使用 difftime 进行比较:

你可以简单地使用difftime()函数比较时间并返回 1-1 如下:

int comparetime(time_t time1,time_t time2){
return difftime(time1,time2) > 0.0 ? 1 : -1;
}

SECOND- 将字符串转换成时间:

如果您难以 string 转换为 time_t 结构,您可以依次使用两个函数:

  1. char *strptime(const char *buf, const char *format, struct tm *tm);功能。将字符串转换为 struct tm

    示例:要将日期时间字符串 "Mar 21 11:51:20 AM" 转换为 struct tm,您需要三个合成字符串:

    %b : Month name, can be either the full name or an abbreviation
    %d : Day of the month [1–31].
    %r : Time in AM/PM format of the locale. If not available in the locale time format, defaults to the POSIX time AM/PM format: %I:%M:%S %p.

  2. time_t mktime (struct tm * timeptr);struct tm* 转换为 time_t

  3. 的函数

下面是我的示例程序:

#include <stdio.h>
#include <time.h>
int main(void){
time_t t1, t2;
struct tm *timeptr,tm1, tm2;
char* time1 = "Mar 21 11:51:20 AM";
char* time2 = "Mar 21 10:20:05 AM";

//(1) convert `String to tm`:
if(strptime(time1, "%b %d %r",&tm1) == NULL)
printf("\nstrptime failed\n");
if(strptime(time2, "%b %d %r",&tm2) == NULL)
printf("\nstrptime failed\n");

//(2) convert `tm to time_t`:
t1 = mktime(&tm1);
t2 = mktime(&tm2);

printf("\n t1 > t2 : %d", comparetime(t1, t2));
printf("\n t2 > t1 : %d", comparetime(t2, t1));
printf("\n");
return 1;
}

它如你所愿:

 $ ./a.out 
t1 > t2 : 1
t2 > t1 : -1

要计算两个日期之间的差异,请阅读:How do you find the difference between two dates in hours, in C?

关于c++ - 如何比较格式为 "Month Date hh:mm:ss"的两个时间戳以检查 +ve 或 -ve 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15555406/

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