C 中的十六进制浮点常量
0x0.3p10
代表什么值?
上面语句中的 p
是什么意思?
0x0.3p10
represents what value?
And what's the meaning of the p
in the statement above?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
0x0.3p10
是 C99(1) 中引入的十六进制浮点文字示例。p
将基数与指数分开。0x0.3
位称为有效数字部分(带有可选小数的整数),指数是其缩放的 2 的幂。该特定值的计算方式为十六进制
0.3
或3 * 16-1
(3/16
) 乘积通过210
(1024
),得到3 * 1024 / 16
或192
>。以下程序证实了这一点:C99 的
6.4.4.2 Floating Constants
节包含所有详细信息:(1) 这些文字也在标准的 C++17 迭代中添加到 C++ 中,尽管格式化和解析它们的能力是 C++11 的一部分。
0x0.3p10
is an example of a hexadecimal floating point literal, introduced in C99(1). Thep
separates the base number from the exponent.The
0x0.3
bit is called the significand part (whole with optional fraction) and the exponent is the power of two by which it is scaled.That particular value is calculated as
0.3
in hex, or3 * 16-1
(3/16
) multiplied by210
(1024
), which gives3 * 1024 / 16
or192
. The following program confirms this:Section
6.4.4.2 Floating constants
of C99 has all the details:(1) These literals were also added to C++ in the C++17 iteration of the standard, though the ability to format and parse them was part of C++11.