我得到了一个浮点变量,想知道它的字节表示是什么。所以我去了 IDEOne 并编写了一个简单的程序来做到这一点。但是,令我惊讶的是,它会导致运行时错误:
#include <stdio.h>
#include <assert.h>
int main()
{
// These are their sizes here. So just to prove it.
assert(sizeof(char) == 1);
assert(sizeof(short) == 2);
assert(sizeof(float) == 4);
// Little endian
union {
short s;
char c[2];
} endian;
endian.s = 0x00FF; // would be stored as FF 00 on little
assert((char)endian.c[0] == (char)0xFF);
assert((char)endian.c[1] == (char)0x00);
union {
float f;
char c[4];
} var;
var.f = 0.0003401360590942204;
printf("%x %x %x %x", var.c[3], var.c[2], var.c[1], var.c[0]); // little endian
}
在 IDEOne 上,它输出:
39 ffffffb2 54 4a
以及运行时错误。为什么会出现运行时错误,为什么b2
实际上是ffffffb2
?我的猜测b2
是符号扩展。