linux下获取时间的若干函数(转)
时间:2010-05-17 来源:championwxd
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
asctime(将时间和日期以字符串格式表示) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
相关函数 |
|
|
|
|
|
|
|
|
|
time,ctime,gmtime,localtime |
|
|
|
|
表头文件 |
|
|
|
|
|
|
|
|
|
#include<time.h> |
|
|
|
|
定义函数 |
|
|
|
|
|
|
|
|
|
char * asctime(const struct tm * timeptr); |
|
|
|
|
函数说明 |
|
|
|
|
|
|
|
|
|
asctime()将参数 timeptr所指的tm结构中的信息转换成真实世界所使用的时间日期表示方法,然后将结果以字符串形态返回。此函数已经由时区转换成当地时间,字符串格 式为:“Wed Jun 30 21:49:08 1993\n” |
|
|
|
|
返回值 |
|
|
|
|
|
|
|
|
|
若再调用相关的时间日期函 数,此字符串可能会被破坏。此函数与ctime不同处在于传入的参数是不同的结构。 |
|
|
|
|
附加说明 |
|
|
|
|
|
|
|
|
|
返回一字符串表示目前当地的 时间日期。 |
|
|
|
|
范例 |
|
|
|
|
|
|
|
|
|
#include <time.h> |
|
|
|
|
执行 |
|
|
|
|
|
|
|
|
|
Sat Oct 28 02:10:06 2000 |
|
|
|
|
ctime(将时间和日期以字符串格式表示) |
||||||||||
|
|
|
|
相关函数 |
|
|
|
|
|
|
|
|
|
time,asctime,gmtime,localtime |
|
|
|
|
表头文件 |
|
|
|
|
|
|
|
|
|
#include<time.h> |
|
|
|
|
定义函数 |
|
|
|
|
|
|
|
|
|
char *ctime(const time_t *timep); |
|
|
|
|
函数说明 |
|
|
|
|
|
|
|
|
|
ctime()将参数 timep所指的time_t结构中的信息转换成真实世界所使用的时间日期表示方法,然后将结果以字符串形态返回。此函数已经由时区转换成当地时间,字符 串格式为“Wed Jun 30 21 :49 :08 1993\n”。若再调用相关的时间日期函数,此字符串可能会被破坏。 |
|
|
|
|
返回值 |
|
|
|
|
|
|
|
|
|
返回一字符串表示目前当地的 时间日期。 |
|
|
|
|
范例 |
|
|
|
|
|
|
|
|
|
#include<time.h> |
|
|
|
|
执行 |
|
|
|
|
|
|
|
|
|
Sat Oct 28 10 : 12 : 05 2000 |
|
|
|
|
gettimeofday(取得目前的时间) |
||||||||||
|
|
|
|
相关函数 |
|
|
|
|
|
|
|
|
|
time,ctime,ftime,settimeofday |
|
|
|
|
表头文件 |
|
|
|
|
|
|
|
|
|
#include <sys/time.h> |
|
|
|
|
定义函数 |
|
|
|
|
|
|
|
|
|
int gettimeofday ( struct timeval * tv , struct timezone * tz ) |
|
|
|
|
函数说明 |
|
|
|
|
|
|
|
|
|
gettimeofday() 会把目前的时间有tv所指的结构返回,当地时区的信息则放到tz所指的结构中。 |
|
|
|
|
返回值 |
|
|
|
|
|
|
|
|
|
成功则返回0,失败返回 -1,错误代码存于errno。附加说明EFAULT指针tv和tz所指的内存空间超出存取权限。 |
|
|
|
|
范例 |
|
|
|
|
|
|
|
|
|
#include<sys/time.h> |
|
|
|
|
执行 |
|
|
|
|
|
|
|
|
|
tv_sec: 974857339 |
|
|
|
|
gmtime(取得目前时间和日期) |
||||||||||
|
|
|
|
相关函数 |
|
|
|
|
|
|
|
|
|
time,asctime,ctime,localtime |
|
|
|
|
表头文件 |
|
|
|
|
|
|
|
|
|
#include<time.h> |
|
|
|
|
定义函数 |
|
|
|
|
|
|
|
|
|
struct tm*gmtime(const time_t*timep); |
|
|
|
|
函数说明 |
|
|
|
|
|
|
|
|
|
gmtime()将参数 timep 所指的time_t 结构中的信息转换成真实世界所使用的时间日期表示方法,然后将结果由结构tm返回。 |
|
|
|
|
返回值 |
|
|
|
|
|
|
|
|
|
返回结构tm代表目前UTC 时间 |
|
|
|
|
范例 |
|
|
|
|
|
|
|
|
|
#include <time.h> |
|
|
|
|
执行 |
|
|
|
|
|
|
|
|
|
2000/10/28 Sat 8:15:38 |
|
|
|
|
localtime(取得当地目前时间和日期) |
||||||||||
|
|
|
|
相关函数 |
|
|
|
|
|
|
|
|
|
time, asctime, ctime, gmtime |
|
|
|
|
表头文件 |
|
|
|
|
|
|
|
|
|
#include<time.h> |
|
|
|
|
定义函数 |
|
|
|
|
|
|
|
|
|
struct tm *localtime(const time_t * timep); |
|
|
|
|
函数说明 |
|
|
|
|
|
|
|
|
|
localtime()将参 数timep所指的time_t结构中的信息转换成真实世界所使用的时间日期表示方法,然后将结果由结构tm返回。结构tm的定义请参考 gmtime()。此函数返回的时间日期已经转换成当地时区。 |
|
|
|
|
返回值 |
|
|
|
|
|
|
|
|
|
返回结构tm代表目前的当地 时间。 |
|
|
|
|
范例 |
|
|
|
|
|
|
|
|
|
#include<time.h> |
|
|
|
|
执行 |
|
|
|
|
|
|
|
|
|
2000/10/28 Sat 11:12:22 |
|
|
|
|
mktime(将时间结构数据转换成经过的秒数) |
||||||||||
|
|
|
|
相关函数 |
|
|
|
|
|
|
|
|
|
time,asctime,gmtime,localtime |
|
|
|
|
表头文件 |
|
|
|
|
|
|
|
|
|
#include<time.h> |
|
|
|
|
定义函数 |
|
|
|
|
|
|
|
|
|
time_t mktime(strcut tm * timeptr); |
|
|
|
|
函数说明 |
|
|
|
|
|
|
|
|
|
mktime()用来将参数 timeptr所指的tm结构数据转换成从公元1970年1月1日0时0分0 秒算起至今的UTC时间所经过的秒数。 |
|
|
|
|
返回值 |
|
|
|
|
|
|
|
|
|
返回经过的秒数。 |
|
|
|
|
范例 |
|
|
|
|
|
|
|
|
|
/* 用time()取得时间(秒数),利用localtime() |
|
|
|
|
执行 |
|
|
|
|
|
|
|
|
|
time():974943297 |
|
|
|
|
settimeofday(设置目前时间) |
||||||||||
|
|
|
|
相关函数 |
|
|
|
|
|
|
|
|
|
time,ctime,ftime,gettimeofday |
|
|
|
|
表头文件 |
|
|
|
|
|
|
|
|
|
#include<sys/time.h> |
|
|
|
|
定义函数 |
|
|
|
|
|
|
|
|
|
int settimeofday ( const struct timeval *tv,const struct timezone *tz); |
|
|
|
|
函数说明 |
|
|
|
|
|
|
|
|
|
settimeofday() 会把目前时间设成由tv所指的结构信息,当地时区信息则设成tz所指的结构。详细的说明请参考gettimeofday()。注意,只有root权限才能 使用此函数修改时间。 |
|
|
|
|
返回值 |
|
|
|
|
|
|
|
|
|
成功则返回0,失败返回 -1,错误代码存于errno。 |
|
|
|
|
错误代码 |
|
|
|
|
|
|
|
|
|
EPERM 并非由root权限调用settimeofday(),权限不够。 |
|
|
|
|
time(取得目前的时间) |
||||||||||
|
|
|
|
相关函数 |
|
|
|
|
|
|
|
|
|
ctime,ftime,gettimeofday |
|
|
|
|
表头文件 |
|
|
|
|
|
|
|
|
|
#include<time.h> |
|
|
|
|
定义函数 |
|
|
|
|
|
|
|
|
|
time_t time(time_t *t); |
|
|
|
|
函数说明 |
|
|
|
|
|
|
|
|
|
此函数会返回从公元1970 年1月1日的UTC时间从0时0分0秒算起到现在所经过的秒数。如果t 并非空指针的话,此函数也会将返回值存到t指针所指的内存。 |
|
|
|
|
返回值 |
|
|
|
|
|
|
|
|
|
成功则返回秒数,失败则返回 ((time_t)-1)值,错误原因存于errno中。 |
|
|
|
|
范例 |
|
|
|
|
|
|
|
|
|
#include<time.h> |