Objective-C 中的“isNan”
Objective-C 是否有像 isNan
(Javascript 示例)这样的函数?
我刚刚注意到此代码导致显示 Nan %
,因此我需要检测值是否为 NAN,以便我可以将其更改为 0
。
[portefeuillePercentWaarde setText:[NSString stringWithFormat:@"%.2f%%", verschilPrencentage]];
Is there a function like isNan
(Javascript example) for Objective-C?
I just noticed this code is causing to display Nan %
, so I need to detect is a value is NAN so I could change it to 0
.
[portefeuillePercentWaarde setText:[NSString stringWithFormat:@"%.2f%%", verschilPrencentage]];
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试仅添加
然后使用标准
isnan()
函数进行测试。您还可以使用 NaN 不等于任何东西(包括其自身)的“技巧”:
Try just adding
and then using the standard
isnan()
function to test.You can also use the "trick" that NaN is not equal to anything, including itself: