Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能标题错了,但我不知道如何描述它。
int x=0x4a; h=!(0x80000000000&(0x39+(~x+1)));
结果是 h=0。问题是 x 有 32 位,而 0x80000000000 有超过 32 位。如果我将变量 i 设置为 0x80000000000 并将其打印为十六进制格式,它将显示 0。那么在这种情况下,为什么 h 的结果不是 1,因为 0x80000000000 变成了 0?
我使用的语言是C
0x8000000000 是一个long long int常数。因此,C 编译器将算术表达式中的类型提升到表达式中出现的最高精度。
long long int
相反,如果您写道:
int x=0x4a; int h1=(0x80000000000&(0x39+(~x+1))); int h = !h1;
然后h将变为 1。也许会发出关于缺少精度的警告。
h