C语言中的time.h函数库提供了一些函数来处理时间和日期。下面是一些常用的函数及其用法:
time_t time(time_t *t) 这个函数返回当前时间距离1970年1月1日00:00:00的秒数。如果传入一个非空的time_t指针,它将把当前时间存储到该指针指向的内存中。例如:
time_t current_time;
time(¤t_time);
struct tm *localtime(const time_t *t) 这个函数将time_t类型的时间转换为struct tm结构体,表示当地时间。例如:
time_t current_time;
struct tm *local_time;
current_time = time(NULL);
local_time = localtime(¤t_time);
char *asctime(const struct tm *tm) 这个函数将struct tm结构体表示的时间转换为一个字符串表示。例如:
struct tm *time_info;
char *time_str;
time_info = localtime(¤t_time);
time_str = asctime(time_info);
double difftime(time_t t1, time_t t2) 这个函数返回两个时间之间的差值,以秒为单位。例如:
double diff_seconds = difftime(t2, t1);
这些是一些time.h函数库中常用的函数,可以帮助你处理时间和日期相关的操作。