本文介绍了为什么 abs(0x80000000) == 0x80000000?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我刚开始阅读黑客的喜悦将 abs(-2) 定义为 -2.这是为什么?

I just started reading Hacker's Delight and it defines abs(-2) as -2. Why is that?

我在几个不同的系统上尝试了 printf("%x", abs(0x80000000)) 并且在所有系统上都返回 0x80000000.

I tried printf("%x", abs(0x80000000)) on a few different systems and I get back 0x80000000 on all of them.

推荐答案

对于 32 位数据类型,没有 +2^31 的表达式,因为最大的数字是 2^31-1 ...阅读更多关于 二进制补码 ...

For a 32bit datatype there is no expression of +2^31, because the biggest number is 2^31-1 ... read more about the two's complement ...

这篇关于为什么 abs(0x80000000) == 0x80000000?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-16 16:12