首页 > 代码库 > NSDate 、CFAbsoluteTimeGetCurrent、CACurrentMediaTime 的区别
NSDate 、CFAbsoluteTimeGetCurrent、CACurrentMediaTime 的区别
框架层:
NSDate 属于Foundation
CFAbsoluteTimeGetCurrent() 属于 CoreFoundatio
本质区别:
NSDate
或 CFAbsoluteTimeGetCurrent() 返回的时钟时间将会会网络时间同步,从时钟
偏移量的角度,mach_absolute_time()
和CACurrentMediaTime()
是基于内建时钟的,能够更精确更原子化地测量,并且不会因为外部时间变化而变化(例如时区变化、夏时制、秒突变等),但它和系统的uptime有关,系统重启后CACurrentMediaTime()会被重置。
常见用法:
NSDate、CFAbsoluteTimeGetCurrent
()常用于日常时间、时间戳的表示,与服务器之间的数据交互
其中 CFAbsoluteTimeGetCurrent() 相当于[[NSDate data] timeIntervalSinceReferenceDate];
CACurrentMediaTime() 常用于测试代码的效率
参考文章:
http://nshipster.cn/benchmarking/
http://blog.spacemanlabs.com/2011/09/all-in-the-timing-keeping-track-of-time-passed-on-ios/
NSDate 、CFAbsoluteTimeGetCurrent、CACurrentMediaTime 的区别
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。