如何在 Objective-C (iOS) 中检查 NaN 值
我对 CGFloat 中的 NaN 值有疑问,如何解决检查号码是否有效?
到目前为止唯一有效的方法是:
if ([[NSString stringWithFormat:@"%f", output] isEqualToString:@"nan"]) {
output = 0;
}
这根本不是一个好的解决方案! :) ...而且我很确定我应该做其他事情。
Possible Duplicates:
Objective-C - float checking for nan
Determine if NSNumber is NaN
I have a problem with NaN values in CGFloat, how can I check if the number is valid?
the only way so far that works is:
if ([[NSString stringWithFormat:@"%f", output] isEqualToString:@"nan"]) {
output = 0;
}
which is not a nice solution at all! :) ... and I am pretty sure that there is something else I should do instead.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 math.h 中有一个用于检查数字是否为 nan inf 等的定义(我认为您可以在不导入的情况下使用它)。
如果您遵循定义,您最终会得到
一些其他有用的定义,例如 isinf、 isnormal , isfinite , ...
There is a define for checking if a number is nan inf etc in math.h (you can use it without import I think).
if you follow the define you will end up with
there are also some other useful defines like isinf, isnormal , isfinite , ...