在线文档教程

localtime

localtime, localtime_s

在头文件中定义
struct tm * localtime(const time_t * time);(1)
struct tm * localtime_s(const time_t *限制时间,struct tm *限制结果);(2)(自C11以来)

1)以struct tm格式将历元以来的给定时间(time_t指向的值time)转换为以本地时间表示的日历时间。结果存储在静态存储器中,并返回指向该静态存储器的指针。

2)与(1)相同,只是该函数使用用户提供的存储result结果,并且在运行时检测到以下错误并调用当前安装的约束处理函数:

  • time或者result是空指针

与所有边界检查的函数一样,localtime_s只有__STDC_LIB_EXT1__在实现定义并且用户在包含之前定义__STDC_WANT_LIB_EXT1__为整数常量时1才能保证可用time.h

参数

时间-指向要转换的time_t对象的指针
结果-指向结构tm对象来存储结果的指针

返回值

1)tm成功时指向静态内部对象的指针,否则为空指针。该结构可以在gmtimelocaltime和之间共享,ctime并且可以在每次调用时被覆盖。

2)result指针的副本或错误上的空指针(可能是运行时约束违规或将指定时间转换为本地日历时间失败)

注释

这个函数localtime可能不是线程安全的。

如果由于参数太大而导致失败,POSIX要求此函数设置errnoEOVERFLOW

POSIX定义了一个线程安全的替代localtime_r,它与C11函数类似localtime_s,但它不检查其输入参数的有效性。

#define __STDC_WANT_LIB_EXT1__ 1 #include <time.h> #include <stdio.h> int main(void) { time_t t = time(NULL printf("UTC: %s", asctime(gmtime(&t)) printf("local: %s", asctime(localtime(&t)) #ifdef __STDC_LIB_EXT1__ struct tm buf; char str[26]; asctime_s(str,sizeof str,gmtime_s(&t, &buf) printf("UTC: %s", str asctime_s(str,sizeof str,localtime_s(&t, &buf)) printf("local: %s", str #endif }

输出:

UTC: Tue Feb 17 18:12:09 2015 local: Tue Feb 17 13:12:09 2015 UTC: Tue Feb 17 18:12:09 2015 local: Tue Feb 17 13:12:09 2015

参考

  • C11标准(ISO / IEC 9899:2011):