2

我不明白为什么这段代码不会每秒钟打印一次当前时间。这里有什么问题 ?

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


int main(int argc, const char * argv[])
{
    while (1) {
        sleep(1);
        time_t tm;
        struct tm *t_struct;
        tm = time(NULL);
        t_struct = localtime(&tm);

        printf("%.2d:%.2d:%.2d", t_struct->tm_hour, t_struct->tm_min, t_struct->tm_sec);
    }
    return 0;
}
4

1 回答 1

11

stdout可能是行缓冲的,因此您可能需要fflush在输出文本后使用它,或者打印换行符以使更改可见。

于 2012-08-14T16:43:40.190 回答