std::localtime
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <ctime> 中定义
|
||
std::tm* localtime( const std::time_t *time ); |
||
将已给定的时间,因为划时代的std::time_t价值为日历时间,本地时间表示.
原文:
Converts given time since epoch as std::time_t value into calendar time, expressed in local time.
目录 |
[编辑] 参数
time | - | 指针到一个time_t对象转换
原文: pointer to a time_t object to convert |
[编辑] 返回值
指向一个静态内部std::tm对象的成功,或以其他方式NULL。该结构可std::gmtime,std::localtime,和std::ctime之间共享,并在每次调用时可能会被覆盖.
原文:
pointer to a static internal std::tm object on success, or NULL otherwise. The structure may be shared between std::gmtime, std::localtime, and std::ctime, and may be overwritten on each invocation.
[编辑] 注释
此功能可能不是线程安全的.
原文:
This function may not be thread-safe.
POSIX规定,此功能设置errnoEOVERFLOW,如果它失败了,因为过大的说法是.
原文:
POSIX requires that this function sets errno to EOVERFLOW if it fails because the argument is too large.
[编辑] 示例
#include <iostream> #include <iomanip> #include <ctime> int main() { std::time_t t = std::time(nullptr); std::cout << "UTC: " << std::put_time(std::gmtime(&t), "%c %Z") << '\n' << "local: " << std::put_time(std::localtime(&t), "%c %Z") << '\n'; }
输出:
UTC: Wed Dec 28 11:47:03 2011 GMT local: Wed Dec 28 06:47:03 2011 EST
[编辑] 另请参阅
转换的时间,因为时代的日历时间为协调世界时表示 原文: converts time since epoch to calendar time expressed as Universal Coordinated Time (函数) | |
C documentation for localtime
|