MSVC 中的无穷大++
我正在使用 MSVC++,并且我想在代码中使用特殊值 INFINITY。
MSVC++ 中用于无穷大的字节模式或常量是什么?
为什么 1.0f/0.0f 的值看起来为 0?
#include <stdio.h>
#include <limits.h>
int main()
{
float zero = 0.0f ;
float inf = 1.0f/zero ;
printf( "%f\n", inf ) ; // 1.#INF00
printf( "%x\n", inf ) ; // why is this 0?
printf( "%f\n", zero ) ; // 0.000000
printf( "%x\n", zero ) ; // 0
}
I'm using MSVC++, and I want to use the special value INFINITY in my code.
What's the byte pattern or constant to use in MSVC++ for infinity?
Why does 1.0f/0.0f appear to have the value 0?
#include <stdio.h>
#include <limits.h>
int main()
{
float zero = 0.0f ;
float inf = 1.0f/zero ;
printf( "%f\n", inf ) ; // 1.#INF00
printf( "%x\n", inf ) ; // why is this 0?
printf( "%f\n", zero ) ; // 0.000000
printf( "%x\n", zero ) ; // 0
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
printf("%x\n", inf) 需要一个整数(在 MSVC 上为 32 位),但收到一个双精度值。热闹将会随之而来。呃,我的意思是:未定义的行为。
(是的,它收到一个双精度值,因为对于变量参数列表,浮点数被提升为双精度值)。
无论如何编辑,您应该使用
numeric_limits
,正如其他回复所说的那样。printf("%x\n", inf)
expects an integer (32 bit on MSVC), but receives a double. Hilarity will ensue. Err, I mean: undefined behavior.(And yes, it receives a double since for a variable argument list, floats are promoted to double).
Edit anyways, you should use
numeric_limits
, as the other reply says, too.在 printf 的变量参数列表中,浮点数被提升为双精度数。无穷大的小端字节表示为双精度数是 00 00 00 00 00 00 F0 7F。
正如 peterchen 提到的,“%x”需要一个 int,而不是一个 double。因此 printf 仅查看参数的第一个 sizeof(int) 字节。没有任何版本的 MSVC++ 将 int 定义为大于 4 个字节,因此您得到的全是零。
In the variable arguments list to printf, floats get promoted to doubles. The little-endian byte representation of infinity as a double is 00 00 00 00 00 00 F0 7F.
As peterchen mentioned, "%x" expects an int, not a double. So printf looks at only the first sizeof(int) bytes of the argument. No version of MSVC++ defines int to be larger than 4 bytes, so you get all zeros.
看一下
numeric_limits::infinity< /代码>
。
Take a look at
numeric_limits::infinity
.这就是当你对 printf() 撒谎时会发生的情况,它会出错。当您使用 %x 格式说明符时,它期望在堆栈上传递整数,而不是在 FPU 堆栈上传递浮点数。修复:
您可以从
C++ 头文件中获得无穷大:That's what happens when you lie to printf(), it gets it wrong. When you use the %x format specifier, it expects an integer to be passed on the stack, not a float passed on the FPU stack. Fix:
You can get infinity out of the
<limits>
C++ header file:使用
numeric_limits
:Use
numeric_limits
: