timeIntervalSinceDate 返回什么时间单位?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它以
NSTimeInterval
值的形式返回秒数。来自此文档页面:
It returns the number of seconds, as an
NSTimeInterval
value.From this documentation page:
那么
NSDate
docs 将函数原型显示为:- (NSTimeInterval)timeIntervalSinceDate:(NSDate *)anotherDate
和基础数据类型 doc 指出:
Well the
NSDate
docs show the function prototype as:- (NSTimeInterval)timeIntervalSinceDate:(NSDate *)anotherDate
And the Foundation Data Types doc states: