isnan 奇怪的错误

发布于 2024-12-21 08:04:16 字数 900 浏览 2 评论 0原文

我对代码中的简单 isnan 测试感到非常头疼。我有一个 3d 矢量类,其中包含 xyz 类型为 double 的变量,以及以下函数头文件:

#ifdef WIN32
bool IsValid() const {return !_isnan(x) && _finite(x) && !_isnan(y) && _finite(y) && !_isnan(z) && _finite(z);} //is a valid vector? (funky windows _ versions...) 
#else
bool IsValid() const {return !isnan(x) && finite(x) && !isnan(y) && finite(y) && !isnan(z) && finite(z);} //is a valid vector? 
#endif    

我正在 Eclipse CDT 上的 Linux GCC 环境中构建并收到以下错误:

Function '__isnanl' could not be resolved

以及

Function '__isnanf' could not be resolved

isnan 的所有实例。使用 std::isnan 并包含 float.hmath.h 并不能解决这个问题。有谁知道发生了什么事吗?

I'm getting a lot of headache with a simple isnan test in my code. I have a 3d vector class with variables x,y,z of type double, and the following function in the header file:

#ifdef WIN32
bool IsValid() const {return !_isnan(x) && _finite(x) && !_isnan(y) && _finite(y) && !_isnan(z) && _finite(z);} //is a valid vector? (funky windows _ versions...) 
#else
bool IsValid() const {return !isnan(x) && finite(x) && !isnan(y) && finite(y) && !isnan(z) && finite(z);} //is a valid vector? 
#endif    

I'm building in a Linux GCC environment on Eclipse CDT and getting the following error:

Function '__isnanl' could not be resolved

as well as

Function '__isnanf' could not be resolved

for all instances of isnan. Using std::isnan and including float.h and math.h don't solve it. Does anyone know what's going on?

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

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

发布评论

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

评论(2

§普罗旺斯的薰衣草 2024-12-28 08:04:16

1) 尝试包含
2) 编写自己的 isnan(x) 函数

bool isnan(x)
{
   if (x==x)
   {
      return false;
   }
   else
   {
      return true;
   }
}

3) 这可能是一个愚蠢的命名问题吗?isnanl 应该定义为 isnan 吗?
请参阅:检查 double(或 float)是否为 NaN在 C++ 中

1) Try to include <math.h>
2) Write your own isnan(x) function

bool isnan(x)
{
   if (x==x)
   {
      return false;
   }
   else
   {
      return true;
   }
}

3) Could it be a silly naming problem?isnanl should probably be defined as isnan?
See: Checking if a double (or float) is NaN in C++

尤怨 2024-12-28 08:04:16

我遇到了同样的问题。 isnan() 在命令行上工作,但令人烦恼的是,Eclipse 将其报告为错误。该问题是由于 Eclipse CDT 使用 gcc 编译器略有不同。更深入地看, isnan() 似乎是一个宏,根据某些标志被转换为 __isnan() 或其他一些函数。当您从 Eclipse 编译时,这些标志可能会有所不同。

我通过使用

__isnan(double x)

也可以在 math.h 上找到的函数修复了它,在 cmdline 编译器上正常工作,并且 Eclipse 不会抱怨它。

I run into the same issue. isnan() works on command-line but annoyingly, Eclipse reports it as an error. The problem is due to Eclipse CDT using the gcc compiler little differently. Looking a bit deeper, isnan() seems to be a macro that is translated to __isnan() or some other functions depending on some flags. Maybe these flags differ when you compile from Eclipse.

I fixed it by using function

__isnan(double x)

which can also be found on math.h, works correctly on cmdline compiler and Eclipse does not complain about it.

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