isnan 奇怪的错误
我对代码中的简单 isnan
测试感到非常头疼。我有一个 3d 矢量类,其中包含 x
、y
、z
类型为 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.h
和 math.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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
1) 尝试包含
2) 编写自己的 isnan(x) 函数
3) 这可能是一个愚蠢的命名问题吗?
isnanl
应该定义为isnan
吗?请参阅:检查 double(或 float)是否为 NaN在 C++ 中
1) Try to include
<math.h>
2) Write your own isnan(x) function
3) Could it be a silly naming problem?
isnanl
should probably be defined asisnan
?See: Checking if a double (or float) is NaN in C++
我遇到了同样的问题。 isnan() 在命令行上工作,但令人烦恼的是,Eclipse 将其报告为错误。该问题是由于 Eclipse CDT 使用 gcc 编译器略有不同。更深入地看, isnan() 似乎是一个宏,根据某些标志被转换为 __isnan() 或其他一些函数。当您从 Eclipse 编译时,这些标志可能会有所不同。
我通过使用
也可以在 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
which can also be found on math.h, works correctly on cmdline compiler and Eclipse does not complain about it.