我有一个关于 glibc ctime() 如何工作的问题。
按照我的片段:
#include <stdio.h>
#include <time.h>
#include <stdlib.h>
int main (int argc,char** argv)
{
int ret=EXIT_SUCCESS;
time_t tm1;
time_t tm2;
tm1 = time(NULL);
tm2 = tm1 + 60; // 60 seconds later
puts("1st method-------");
printf("tm1 = %stm2 = %s",ctime(&tm1),ctime(&tm2));
puts("2nd method-------");
printf("tm1 = %s",ctime(&tm1));
printf("tm2 = %s",ctime(&tm2));
return(ret);
}
我有:
1st method-------
tm1 = Sat Jan 14 01:13:28 2012
tm2 = Sat Jan 14 01:13:28 2012
2nd method-------
tm1 = Sat Jan 14 01:13:28 2012
tm2 = Sat Jan 14 01:14:28 2012
如您所见,在第一种方法中,两个 tm 具有相同的值,这是不正确的。在第二种方法中,我得到了正确的值。我知道 ctime() 将这些字符串放在静态缓冲区中,要覆盖它,我们需要连续调用 ctime()。
问:我不是在第一种方法中进行连续调用吗?
谢谢你的回复。