std::tm
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
结构分解成其组成部分的日历日期和时间.
原文:
Structure holding a calendar date and time broken down into its components.
[编辑] 会员对象
int tm_sec |
seconds after the minute – [0, 60][note 1] (公共成员对象) |
int tm_min |
分钟后,1小时 - [0,59] (公共成员对象) |
int tm_hour |
小时,自午夜开始 - [0,23] (公共成员对象) |
int tm_mday |
月的一天 - [1,31] (公共成员对象) |
int tm_mon |
1月个月以来 - [0,11] (公共成员对象) |
int tm_year |
年自1900年以来 (公共成员对象) |
int tm_wday |
自上周日以来,天 - [0,6] (公共成员对象) |
int tm_yday |
天自1月1日 - [0,365] (公共成员对象) |
int tm_isdst |
夏令时间标志。的价值是积极的,如果DST是有效的,如果不是零和负的,如果没有可用的信息 原文: Daylight Saving Time flag. The value is positive if DST is in effect, zero if not and negative if no information is available (公共成员对象) |
{{{1}}}
- ↑ Range allows for a positive leap second.
原文:
[编辑] 另请参阅
因为时代的日历时间转换时间为本地时间表示 原文: 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 tm
|