如何在 Objective-C (iOS) 中检查 NaN 值

发布于 2024-11-13 06:11:17 字数 525 浏览 3 评论 0原文

可能的重复:
Objective-C - nan 的浮点检查
确定 NSNumber 是否为 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夜雨飘雪 2024-11-20 06:11:17

在 math.h 中有一个用于检查数字是否为 nan inf 等的定义(我认为您可以在不导入的情况下使用它)。

isnan(myValue)

如果您遵循定义,您最终会得到

(x!=x)

一些其他有用的定义,例如 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).

isnan(myValue)

if you follow the define you will end up with

(x!=x)

there are also some other useful defines like isinf, isnormal , isfinite , ...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文