指针是否与 NSTimeInterval 一起使用?
即使它被定义为 int,您是否使用带有 NSTimeInterval 的指针?
例如,您使用: NSTimeInterval *时间
或 NSTimeInterval时间
谢谢!
Do you use a pointer with a NSTimeInterval even though it is defined to be an int?
For instance do you use:NSTimeInterval *time
orNSTimeInterval time
Thank You!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
NSTimeInterval 的 typedef 为 double。通常没有理由使用指针
NSTimeInterval is typedef to double. There is usually no reason to use pointer
NSTimeInterval
是一个double
,按住 Cmd 双击该符号即可查看typedef
。通常您会直接使用它,但您可以使用指针来更改方法调用中的值:这是一个奇怪的示例,但您明白了。
NSTimeInterval
is adouble
, double-click the symbol while holding Cmd to see thetypedef
. Usually you will use it directly, but you can use a pointer for example to be able to change the value in a method call:This is a weird example, but you get the idea.
不,您通常不需要/使用带有 NSTimeInterval 的指针,因此
NSTimeInterval 时间
应该没问题。No, you don't generally need/use a pointer with NSTimeInterval, so
NSTimeInterval time
should be just fine.