Objective-c中相当于java时间戳的是什么?
我在任何地方都没有找到这个问题的答案,但这似乎是一个典型的问题:我在 Objective-C 中有一个“NSDate 时间戳”,看起来像“2010-07-14 16:30:41 +0200”。 java时间戳只是一个长整数(例如:“976712400000”)。
所以,我的问题是:什么是 Objective-c 相当于 java 时间戳?
预先感谢您的帮助。
I've not found a answer to this question anywhere, but this seems like a typical problem: I have in Objective-C a "NSDate timestamp" that looks like "2010-07-14 16:30:41 +0200". The java timestamp is just a long integer (for example:"976712400000").
So, my question is: What is a Objective-c equivalent to java timestamp?
Thanks in advance for helping.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
虽然@lordsandwich的答案是正确的,但您也可以直接使用
NSDate
timeIntervalSince1970
方法,而不是自己“制作”1970年的NSDate
。它的工作原理如下:
当您使用此方法时,您不会不必要地向自动释放池添加新对象,因此我认为使用此方法实际上更好。
Although @lordsandwich's answer is correct, you can also directly use the
NSDate
timeIntervalSince1970
method, instead of 'making' the 1970NSDate
yourself.That would work like this:
As when you use this you don't unnecessarily add a new object to the autorelease pool, I think it's actually better to use this method.
您可以通过减去起始时间来将 NSDAte 为您提供的格式转换为 unix 时间
unix 时间的日期,即 1970 年 1 月 1 日。 NSTimeInterval 只是两个日期之间的差异,您可以以秒数为单位获取该值:
You can convert the format that NSDAte gives you to unix time by substracting the starting
date of unix time which is the 1st of January 1970. NSTimeInterval is simply the difference between two dates and you can get that in number of seconds: