localtime, localtime_r, localtime_s
来自 cppreference.cn
定义于头文件 <time.h> |
||
(1) | ||
(2) | (since C23) | |
(3) | (since C11) | |
2) 与 (1) 相同,但此函数使用用户提供的存储 buf 来存放结果。
3) 与 (1) 相同,但此函数使用用户提供的存储 buf 来存放结果,并且在运行时检测到以下错误并调用当前安装的约束处理函数
- timer 或 buf 是空指针
- 与所有边界检查函数一样,仅当实现定义了 __STDC_LIB_EXT1__ 且用户在包含 <time.h> 之前将 __STDC_WANT_LIB_EXT1__ 定义为整数常量 1 时,才能保证
localtime_s
可用。
目录 |
[edit] 参数
timer | - | 指向要转换的 time_t 对象的指针 |
buf | - | 指向用于存储结果的 struct tm 对象的指针 |
[edit] 返回值
2,3)
buf
指针的副本;如果出错,则返回空指针(可能是运行时约束冲突或未能将指定时间转换为本地日历时间)。[edit] 注释
函数 localtime
可能不是线程安全的。
POSIX 要求 localtime
和 localtime_r
在因参数过大而失败时将 errno 设置为 EOVERFLOW。
POSIX 规定,localtime
和 localtime_r
确定时区信息的方式等同于调用 tzset
,后者读取环境变量 TZ
。
Microsoft CRT 中 localtime_s
的实现与 C 标准不兼容,因为它具有反向参数顺序并返回 errno_t
。
[edit] 示例
运行此代码
#define __STDC_WANT_LIB_EXT1__ 1 #define _XOPEN_SOURCE // for putenv #include <stdio.h> #include <stdlib.h> // for putenv #include <time.h> int main(void) { time_t t = time(NULL); printf("UTC: %s", asctime(gmtime(&t))); printf("local: %s", asctime(localtime(&t))); // POSIX-specific putenv("TZ=Asia/Singapore"); printf("Singapore: %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: Fri Sep 15 14:22:05 2017 local: Fri Sep 15 14:22:05 2017 Singapore: Fri Sep 15 22:22:05 2017 UTC: Fri Sep 15 14:22:05 2017 local: Fri Sep 15 14:22:05 2017
[edit] 参考
- C23 标准 (ISO/IEC 9899:2024)
- 7.27.3.4 The localtime function (p: TBD)
- K.3.8.2.4 The localtime_s function (p: TBD)
- C17 标准 (ISO/IEC 9899:2018)
- 7.27.3.4 The localtime function (p: 288)
- K.3.8.2.4 The localtime_s function (p: 455)
- C11 标准 (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 标准 (ISO/IEC 9899:1999)
- 7.23.3.4 The localtime function (p: 343)
- C89/C90 标准 (ISO/IEC 9899:1990)
- 4.12.3.4 The localtime function
[edit] 参见
(C23)(C11) |
将自纪元以来的时间转换为表示为协调世界时 (UTC) 的日历时间 (函数) |
localtime 的 C++ 文档
|