我在C中尝试使用strptime函数时遇到奇怪的行为。

#include <stdio.h>
#define __USE_XOPEN
#define _GNU_SOURCE
#include <time.h>
#include <stdlib.h>
#include <unistd.h>


int parseTime(char *timestamp)
{

    time_t t1;
    struct tm *timeptr,tm1;
    char* time1 = timestamp;


    //(1) convert `String to tm`:
    if(strptime(time1, "%Y/%j/%H/%M/%S",&tm1) == 0)
    {
        fprintf(stderr,"\nInvalid timestamp\nTimestamp should be in the format: YYYY/DDD/HH/MM/SS\n");
        exit(EXIT_FAILURE);
    }

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

    return t1;
}


int main(int argc, char const *argv[])
{
     int now = parseTime(argv[1]);

     int wait = parseTime(argv[2]) - now;

     printf("%d\n", wait);


    return 0;
}

我将此程序运行为./timetest 2400/001/00/00/00 2400/001/00/00/08

这是一些终端输出:
$ ./timetest 2400/001/00/00/00 2400/001/00/00/08

3608

$ ./timetest 2400/001/00/00/00 2400/001/00/00/08

3608

$ ./timetest 2400/001/00/00/00 2400/001/00/00/08

8

$ ./timetest 2400/001/00/00/00 2400/001/00/00/08

8

$ ./timetest 2400/001/00/00/00 2400/001/00/00/08

8

$ ./timetest 2400/001/00/00/00 2400/001/00/00/08

8

$ ./timetest 2400/001/00/00/00 2400/001/00/00/08

3608

$ ./timetest 2400/001/00/00/00 2400/001/00/00/08

3608

$ ./timetest 2400/001/00/00/00 2400/001/00/00/08

8

$ ./timetest 2400/001/00/00/00 2400/001/00/00/08

3608

我缺少某些东西会导致这些不一致的结果吗?

最佳答案

可能是在使用tm之前未初始化strptime

初始化tm:
memset(&tm, 0, sizeof(struct tm));
Documentation声明tm在被strptime调用之前通常不会初始化。这取决于您使用的实现/ UNIX系统。

关于c - 在C中与strptime的解析不一致?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/42501161/

10-17 02:20