gmtime
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <time.h> 中定义
|
||
将已给定的时间,因为划时代的time_t价值为日历时间,在协调世界时(UTC).
原文:
Converts given time since epoch as time_t value into calendar time, expressed in Coordinated Universal Time (UTC).
目录 |
[编辑] 参数
time | - | 指针到一个time_t对象转换
原文: pointer to a time_t object to convert |
[编辑] 返回值
指向一个静态内部tm对象的成功,或以其他方式NULL。结构之间共享gmtime,localtime,ctime在每次调用时,可能会被覆盖.
[编辑] 注释
此功能可能不是线程安全的.
原文:
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.
[编辑] 示例
本章尚未完成 原因:暂无示例 |
[编辑] 另请参阅
因为时代的日历时间转换时间为本地时间表示 原文: converts time since epoch to calendar time expressed as local time (函数) | |
C++ documentation for gmtime
|