我正在计算这样一个数字的百分比:
CGFloat total = 9;
CGFloat onePercent = total / 100;
CGFloat otherNum = 2;
CGFloat otherNumPercentage = otherNum / onePercent;
结果应该是 22.2 重复。但是,它返回 +Inf ,我相信它是无穷大的。
我不认为它会被视为无限,因为 22-23 肯定不算无限,但这是因为永远重复出现的 .2 ?
不知道如何处理,我怎样才能得到我的预期结果?
Best Answer-推荐答案 strong>
当你使用常量时,即 9 你需要指定 9.0f 来表示它是一个 float 而不是一个 int
关于ios - CGFloat 返回 +Inf,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/34769395/
|