std::time_t
来自cppreference.com
在头文件 <ctime> 中定义
|
||
typedef /* 未说明 */ time_t; |
||
可用以表示时间的运算类型。
虽然标准中没有给出定义,但是该类型几乎总是用来表示自 1970 年 1 月 1 日 00:00 UTC 以来所经过的秒数的整数类型,与 POSIX时间相对应。
[编辑] 相关条目
返回当前时间的划时代的时间,因为系统 原文: returns the current time of the system as time since epoch (函数) | |
因为时代的日历时间转换时间为本地时间表示 原文: converts time since epoch to calendar time expressed as local time (函数) | |
转换的时间,因为时代的日历时间为协调世界时表示 原文: converts time since epoch to calendar time expressed as Universal Coordinated Time (函数) | |
C documentation for time_t
|