转载请注明出处: http://blog.csdn.net/zhangyang0402/archive/2010/07/18/5744475.aspx
一、基本系统数据类型-time_t
在unix/linux系统中,时间的表示方法是以1970年1月1日00:00:00所经过的秒数,使用基本系统数据类型time_t表示,在/usr/include下查找time_t类型的定义.
1. sys/types.h
#define __need_timer_t
#define __need_clockid_t
#include <time.h>
2.time.h
typedef __time_t time_t;
# include <bits/types.h> /* This defines __time_t for us. */
3.bits/types.h
__STD_TYPE __TIME_T_TYPE __time_t; /* Seconds since the Epoch. */
# define __STD_TYPE __extension__ typedef
4.bits/typesizes.h
#define __TIME_T_TYPE __SLONGWORD_TYPE
5. bits/types.h
#define __SLONGWORD_TYPE long int
这里,基本就可以得出结论了:
__extension__ typedef long int time_t
则time_t类型的变量最大值为0x7fffffff
二、测试
#include<stdio.h> #include<sys/types.h> #include<time.h> int main(void) { time_t cur_time=time(NULL), max_time=0x7fffffff,new_time=max_time+1; printf("Cur time: cur_time=0x%08x/n", cur_time); printf("/tLocal: %s", asctime(localtime(&cur_time))); printf("/tGMT : %s/n", asctime(gmtime(&cur_time))); printf("Max time: max_time=0x%08x/n", max_time); printf("/tLocal: %s", asctime(localtime(&max_time))); printf("/tGMT : %s/n", asctime(gmtime(&max_time))); printf("New time: new_time=0x%08x/n", new_time); printf("/tLocal: %s", asctime(localtime(&new_time))); printf("/tGMT : %s/n", asctime(gmtime(&new_time))); return 0; }
执行结果
$ ./time_t
Cur time: cur_time=0x4c42b40a
Local: Sun Jul 18 15:58:02 2010
GMT : Sun Jul 18 07:58:02 2010
Max time: max_time=0x7fffffff
Local: Tue Jan 19 11:14:07 2038
GMT : Tue Jan 19 03:14:07 2038
New time: new_time=0x80000000
Local: Sat Dec 14 04:51:44 1901
GMT : Fri Dec 13 20:45:52 1901
从结果得出,32位的time_t最迟能表示到2038年1月19日 11:14:07(Asia/Shanghai时间) 或2038年1月19日 03:14:07(GMT时间),再过1秒,time_t数据将变为负数,变为1901年12月14日 04:51:44(本地时间),或1901年12月13日 20:45:52(GMT时间).