timeIntervalSinceDate 返回什么时间单位?

发布于 2024-11-25 11:27:18 字数 101 浏览 1 评论 0原文

timeIntervalSinceDate 返回什么时间单位?是秒、毫秒还是其他?

文档说它返回一个 NSTimeInterval,但该值是什么时间单位

What unit of time does timeIntervalSinceDate return? Is it seconds, milliseconds or something else?

The documentation says that it returns an NSTimeInterval, but what unit of time is that value?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

娇纵 2024-12-02 11:27:18

它以 NSTimeInterval 值的形式返回秒数。

来自此文档页面

NSTimeInterval 始终以秒为单位指定;它在 10,000 年的范围内产生亚毫秒级的精度。

It returns the number of seconds, as an NSTimeInterval value.

From this documentation page:

NSTimeInterval is always specified in seconds; it yields sub-millisecond precision over a range of 10,000 years.

赠我空喜 2024-12-02 11:27:18

那么 NSDate docs 将函数原型显示为:

- (NSTimeInterval)timeIntervalSinceDate:(NSDate *)anotherDate

和基础数据类型 doc 指出:

NSTimeInterval 始终以秒为单位指定;它产生
10,000 年范围内的亚毫秒级精度。

Well the NSDate docs show the function prototype as:

- (NSTimeInterval)timeIntervalSinceDate:(NSDate *)anotherDate

And the Foundation Data Types doc states:

NSTimeInterval is always specified in seconds; it yields
sub-millisecond precision over a range of 10,000 years.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文