我试着用ISO-8601以分秒的精度打印时间。
年-月-日:月:秒
这是我的代码:

#include <sys/time.h>
#include <time.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>

void milli_time(char* dest, struct timeval* t)
{
    struct tm* timeInfo;
    strftime(dest, 22, "%Y-%m-%dT%t", localtime(&t->tv_sec));
    printf("%s\n", dest);
    fflush(stdout);
    char deciTime[3];
    sprintf(deciTime, ".%lu", ((t->tv_usec)/100000ul));

    strcat(dest, deciTime);
}

int main()
{
    struct timeval* theTime;
    char timeString[32];
    gettimeofday(theTime, NULL);
    printf("%lu.%lu\n", theTime->tv_sec, theTime->tv_usec);
    milli_time(timeString, theTime);
    printf("%s\n", timeString);
    fflush(stdout);
}

每次运行时的输出是:
134520616.3077826840
1974-04-06T17:50:16
1974-04-06T17:50:16.30778

我注意到的另一件事是电视节目超过一百万。

最佳答案

struct timeval* theTime更改为struct timeval theTime并更新对它的相应引用:

gettimeofday(&theTime, NULL);
// etc

这样就为结构分配了空间,而不仅仅是指向结构的指针。当我试图在我的机器上运行时,你的代码会出错。

关于c - C:gettimeofday()每次运行都会产生相同的值,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8199979/

10-10 10:32