真实时间 : 可分为日历时间和流逝时间
进程时间 : 一个进程所使用的CPU时间总量,适用于对程序,算法性能的检查或优化
大多数计算机体系结构都内置有硬件时钟, 使内核得以计算真实时间和进程时间.
下面是结构体的定义
struct timaeval {
time_t tv_sec;
suseconds_t tv_usec;
}
struct tm {
int tm_sec;
int tm_min;
int tm_hour;
int tm_mday;
int tm_mon;
int tm_year;
int tm_wday;
int tm_yday;
int tm_isdst; // = 0 标准间; > 0 夏令时; < 0试图判定DTS在每年的这一时间是否生效
}
时区
不同的国家(有时甚至是同一国家内的不同地区)**
。时区信息往往是既浩繁又多变的。处于这一原因,系统没有将其直接编码于程序或函数库中,而是以标准格式保存于文件中,并加以文件中,加以维护。
这些文件位于目录/usr/share/zoneinfo**中。该目录下的每个文件都包含了一个特定国家或地区内时区制度。
系统的本地时间由时区文件/etc/localtime,通常链接到/usr/share/zoneinfo下的一个文件。
地区
地区信息维护于/usr/share/local 或者 /usr/lib/local之下的目录中。该目录下的每个子目录都包含一特定地区的信息。这些目录的命名约定如下:
language[_territory[.codeset]][@modifier]
language是双字母的ISO语言。territory 是双字母的ISO国家代码, codeset表示字符编码集。
#include <stdio.h>
#include <time.h>
#include <locale.h>
#include <sys/time.h>
#define SECONDS_IN_TROPICAL_YEAR (365.24219 * 24 * 60 *60)
#define BUF_SIZE 1000
char *currTime(const char*format)
{
static char buf[BUF_SIZE];
time_t t;
size_t s;
struct tm *tm;
t = time(NULL);
tm = localtime(&t);
if (tm == NULL) return NULL;
s = strftime(buf, BUF_SIZE, (format != NULL) ? format : "%c", tm);
printf("%s\n", buf);
return (s == 0) ? NULL : buf;
}
int main()
{
time_t t;
struct tm *gmp, *locp;
struct tm gm, loc;
struct timeval tv;
t = time(NULL);
printf("Seconds since the Epoch (1 Jan 1970):%ld", (long)t);
printf("(about %6.3f years)\n", t / SECONDS_IN_TROPICAL_YEAR);
if (gettimeofday(&tv, NULL) == -1)
printf("gettimeofday");
printf("gettimeofday() returned %ld secs, %ld microsecs\n", (long)tv.tv_sec, (long)tv.tv_usec);
//函数gmtime()能够把日历时间转换一个对应于UTC的分解时间
gmp = gmtime(&t);
if (gmp == NULL)
printf("gmtime");
gm = *gmp;
printf("Broken down by gmtime():\n");
printf("year = %d mon = %d mday = %d hour = %d min = %d sec = %d",
gm.tm_year, gm.tm_mon, gm.tm_mday, gm.tm_hour, gm.tm_min, gm.tm_sec);
printf("wday = %d yday = %d isdst = %d\n", gm.tm_wday, gm.tm_yday, gm.tm_isdst);
//考虑时区,返回对应于系统本地的一个分解时间
locp = localtime(&t);
if (locp == NULL)
printf("localtime");
loc = *locp;
printf("Broken down by localtime():\n");
printf("year = %d mon = %d mday = %d hour = %d min = %d sec = %d",
loc.tm_year, loc.tm_mon, loc.tm_mday, loc.tm_hour, loc.tm_min, loc.tm_sec);
printf("wday = %d yday = %d isdst = %d\n", loc.tm_wday, loc.tm_yday, loc.tm_isdst);
printf("asctime() formats the gmtime value as: %s", asctime(&gm));
printf("ctime() formats the time value as: %s", ctime(&t));
printf("mktime() of gmtime() value: %ld secs\n", (long)mktime(&gm));
printf("mktime() of localtime() value: %ld secs\n", (long)mktime(&loc));
char *ct = ctime(&t);
printf("%s", ct);
//用户格式的本地化字符串
currTime(NULL);
}
#include <stdio.h>
#include <time.h>
#include <locale.h>
#define BUF_SIZE 200
int main()
{
time_t t;
struct tm *loc;
char buf[BUF_SIZE];
if (setlocale(LC_ALL, "") == NULL)
printf("setlocale");
t = time(NULL);
printf("ctime() of time() value is: %s", ctime(&t));
loc = localtime(&t);
if (loc == NULL)
printf("localtime");
printf("asctime() of localtime() value is: %s", asctime(loc));
if (strftime(buf, BUF_SIZE, " %A, %d %B %Y, %H:%M:%S %Z", loc) == 0)
printf("strftime");
printf("strftime() of local time is: %s \n", buf);
}