GMTSTimestamp 类引用

GMTSTimestamp 类参考

概览

表示时间戳的对象。

继承 GMTCImmutableData

公共成员函数

(instancetype)- initWithSeconds:nanos
 使用指定的 `seconds` 和 `nanos' 方法实例化对象。

属性

int64_t
 表示自 Unix 纪元 1970-01-01T00:00:00Z 以来的世界协调时间 (UTC) 秒数。
int32_tnanos
 秒的非负分数(纳秒分辨率)。

成员函数文档

- (instancetype) initWithSeconds: (int64_t)
nanos: (int32_t) nanos

使用指定的 `seconds` 和 `nanos' 方法实例化对象。


属性说明

- (int64_t) 秒 [read, assign]

表示世界协调时间 (UTC) 的秒数(从 Unix 时间 1970-01-01T00:00:00Z 开始算起)。

必须介于 0001-01-01T00:00:00Z 和 9999-12-31T23:59:59Z 之间(含边界值)。

- (int32_t) nanos [read, assign]

秒的非负分数(纳秒精度)。

对于含小数部分的负秒数,仍必须包含按时间递升的非负纳秒值。必须介于 0 到 999,999,999 之间(含 0 和 999,999,999)。