作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
文档对此感到困惑。他们说:
void NSDecimalCompact (
NSDecimal *number
);
Discussion Formats number so that calculations using it will take up as little memory as possible. All the NSDecimal... arithmetic functions expect compact NSDecimal arguments.
最后一部分很重要:
All the NSDecimal... arithmetic functions expect compact NSDecimal arguments.
这意味着,每次我将 NSDecimal 作为参数提供给其中一个 NSDecimal...算术函数时,我都必须对每个 NSDecimal 执行 NSDecimalCompact() ?或者我会在创建 NSDecimal 时只执行一次吗?
最佳答案
您不需要调用 NSDecimalCompact()
,只要返回值为 NSCalculationNoError<,
.NSDecimal..()
函数的结果就是紧凑的
关于iphone - 我是否必须在创建的每个 NSDecimal 上执行 NSDecimalCompact() 函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1338110/
文档对此感到困惑。他们说: void NSDecimalCompact ( NSDecimal *number ); Discussion Formats number so that calc
我是一名优秀的程序员,十分优秀!