std::localtime
来自 cppreference.com
定义在头文件 <ctime> 中 |
||
std::tm* localtime( const std::time_t* time ); |
||
将给定的自纪元以来的时间作为 std::time_t 值转换为日历时间,以本地时间表示。
内容 |
[编辑] 参数
time | - | 指向要转换的 std::time_t 对象的指针 |
[编辑] 返回值
指向成功时的静态内部 std::tm 对象的指针,或者在失败时指向空指针。该结构可能在 std::gmtime、std::localtime 和 std::ctime 之间共享,并且可能在每次调用时被覆盖。
[编辑] 注意事项
此函数可能不是线程安全的。
POSIX 要求此函数将 errno 设置为 EOVERFLOW,如果它因参数过大而失败。
POSIX 指定 此函数通过调用 tzset
来确定时区信息,该函数读取环境变量 TZ。
[编辑] 示例
运行此代码
#include <ctime> #include <iomanip> #include <iostream> #include <sstream> int main() { setenv("TZ", "/usr/share/zoneinfo/America/Los_Angeles", 1); // POSIX-specific std::tm tm{}; // Zero initialise tm.tm_year = 2020 - 1900; // 2020 tm.tm_mon = 2 - 1; // February tm.tm_mday = 15; // 15th tm.tm_hour = 10; tm.tm_min = 15; tm.tm_isdst = 0; // Not daylight saving std::time_t t = std::mktime(&tm); std::cout << "UTC: " << std::put_time(std::gmtime(&t), "%c %Z") << '\n'; std::cout << "local: " << std::put_time(std::localtime(&t), "%c %Z") << '\n'; }
可能的输出
UTC: Sat Feb 15 18:15:00 2020 GMT local: Sat Feb 15 10:15:00 2020 PST
[编辑] 另请参阅
将自纪元以来的时间转换为以协调世界时表示的日历时间 (函数) | |
(C23)(C11) |
将自纪元以来的时间转换为以本地时间表示的日历时间 (函数) |
C 文档 for localtime
|