在 C++ 中,用于引用 32 位浮点值的关键字是什么?
在 C++ 中,用于引用 32 位浮点值的关键字是什么?:
In C++, what is the keyword used to refer to a 32-bit floating point value?:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
在 C++ 中,用于引用 32 位浮点值的关键字是什么?:
In C++, what is the keyword used to refer to a 32-bit floating point value?:
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
float
这几乎总是 32b IEEE 浮点
float
This is almost always a 32b IEEE floating point
float
这是一个示例:
请注意小写的 f 表示文字应被解释为 32 位浮点数。
float
here's an example:
Notice the lowercase f to indicate the literal should be interpreted as a 32-bit floating point number.
目前,IEEE-754 32 位浮点由关键字
float
表示。对于 64 位浮点值,有
double
:Currently, the IEEE-754 32-bit floating point is represented by the keyword
float
.For 64-bit floating point values, there's
double
: