localtime, localtime_s

来自cppreference.com
< c‎ | chrono
定义于头文件 <time.h>
struct tm *localtime( const time_t *time );
(1)
struct tm *localtime_s(const time_t *restrict time, struct tm *restrict result);
(2) (C11 起)
1) 转换从纪元开始的给定时间( time 所指向的 time_t 的值),以 struct tm 格式及本地时间表达的日历时间。存储结果于静态存储,并返回指向静态存储的指针。
2)(1) ,除了函数使用用户为结果提供的存储 result ,并且在运行时检测下列错误,并调用当前安装的制约处理函数:
  • timeresult 是空指针
同所有边界检查函数, localtime_s 仅若实现定义了 __STDC_LIB_EXT1__ ,且用户在包含 time.h 前定义 __STDC_WANT_LIB_EXT1__ 为整数常量 1 才保证可用。

参数

time - 指向要转换的 time_t 对象的指针
result - 指向要存储结果的 struct tm 对象的指针

返回值

1) 成功时为指向内部静态 struct tm 对象的指针,否则为 NULL 。该结构体可能在 gmtimelocaltimectime 之间共享,而且可能在每次调用时被覆盖。
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 standard (ISO/IEC 9899:2011):
  • 7.27.3.4 The localtime function (p: 394)
  • K.3.8.2.4 The localtime_s function (p: 627)
  • C99 standard (ISO/IEC 9899:1999):
  • 7.23.3.4 The localtime function (p: 343)
  • C89/C90 standard (ISO/IEC 9899:1990):
  • 4.12.3.4 The localtime function

参阅

将从纪元开始的时间转换成以协调世界时(UTC)表示的日历时间
(函数)