Objective-C 中有定点小数对象吗?
在其他语言中,通常有一个固定的十进制对象可以用来代替 IEEE float/double,以帮助保证精度。 Objective-C 有类似的东西吗?当我查找时,我发现的只是 NSNumber,它似乎只处理标准的原始类型。我还缺少其他物体吗?
In other languages, there is often a fixed decimal object that can be used in place of IEEE float/doubles, to help guarantee precision. Does Objective-C have something similar? When I was looking, all I found was NSNumber, which seems to only deal with the standard primitive types. Is there another object I am missing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
NSDecimalNumber
也许?
根据这篇文章有一个< code>Decimal 不使用 IEEE 浮点表示的类型。
NSDecimalNumber
maybe?According to this post there is a
Decimal
type that does not use IEEE floating point representation.