作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在学习浮点 IEEE 754 数字的表示,我的教科书说:
To pack even more bits into the significand, IEEE 754 makes the leading 1-bit of normalized binary numbers implicit. Hence, the number is actually 24 bits long in single precision (implied 1 and 23-bit fraction), and 53 bits long in double precision (1 + 52).
最佳答案
是的,所有规范化的数字(除了零)都将该位设置为一 (a),因此它们使其隐含以防止浪费存储它的空间。
换句话说,他们完全保存了那个位,并重复使用它,以便它可以用来提高你的数字的精度。
请记住,这是分数的第一位,而不是二进制模式的第一位。二进制模式的第一位是符号,然后是几位指数,然后是分数本身。
例如,单精度数是(符号、指数、分数):
<1> <--8---> <---------23----------> <- bit widths
s eeeeeeee fffffffffffffffffffffff
(-1)sign x 1.fraction x 2exponent-bias
1.fffff...fff
(二进制)。
关于ieee-754 - 浮点 : "The leading 1 is ' implicit' in the significand. "-- ...嗯?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4930269/
我是一名优秀的程序员,十分优秀!