在 ActionScript 中 (NaN==parseFloat(input.text)) 警告它始终为 false。 为什么?

发布于 2024-07-05 15:57:34 字数 496 浏览 5 评论 0原文

尽管有相当明确的文档parseFloat() 可以返回 NaN 作为值,当我编写如下块时:

if ( NaN == parseFloat(input.text) ) {
  errorMessage.text = "Please enter a number."
}

我被警告说比较总是错误的。 测试表明警告是正确的。

更正后的文档在哪里?我该如何编写它以与 AS3 一起使用?

Despite the rather clear documentation which says that parseFloat() can return NaN as a value, when I write a block like:

if ( NaN == parseFloat(input.text) ) {
  errorMessage.text = "Please enter a number."
}

I am warned that the comparison will always be false. And testing shows the warning to be correct.

Where is the corrected documentation, and how can I write this to work with AS3?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(4

青朷 2024-07-12 15:57:35

顺便说一句,如果由于某种原因您无法访问 isNaN(),传统方法是将数字与其自身进行比较:

if( number != number )
{
    //Is NaN 
}

BTW, if for some reason you don't have access to isNaN(), the traditional method is to compare the number to itself:

if( number != number )
{
    //Is NaN 
}
春庭雪 2024-07-12 15:57:35

isNaN(parseFloat(input.text))

isNaN(parseFloat(input.text))

佼人 2024-07-12 15:57:35

Documentation can be found in the Adobe Flex Language Reference Here as well as other globally available functions.

二手情话 2024-07-12 15:57:34

因为任何东西与 NaN 进行比较总是错误的。 使用 isNaN() 代替。

Because comparing anything to NaN is always false. Use isNaN() instead.

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