Why do you need to append an L or F after a value assigned to a C++ constant?(为什么需要在分配给 C++ 常量的值后附加 L 或 F?)
问题描述
我在网上看了很多地方,似乎找不到很好的解释来说明为什么我们应该在分配给 C++ 常量的值后附加 F 或 L.例如:
I have looked at quite a few places online and can't seem to find a good explanation as to why we should append an F or L after a value assigned to a C++ constant. For example:
const long double MYCONSTANT = 3.0000000L;
谁能解释为什么这是必要的?类型声明不是暗示分配给 MYCONSTANT 的值是 long double 吗?上面这行和
Can anyone explain why that is necessary? Doesn't the type declaration imply the value assigned to MYCONSTANT is a long double? What is the difference between the above line and
const long double MYCONSTANT = 3.0000000; // no 'L' appended
哇!
推荐答案
浮点常量在 C++ 中默认为 double 类型.由于long double 比double 更精确,当long double 常量转换为double 时,您可能会丢失有效数字代码>.要处理这些常量,您需要使用L 后缀来保持long double 精度.例如,
Floating-point constants have type double by default in C++. Since a long double is more precise than a double, you may lose significant digits when long double constants are converted to double. To handle these constants, you need to use the L suffix to maintain long double precision. For example,
long double x = 8.99999999999999999;
long double y = 8.99999999999999999L;
std::cout.precision(100);
std::cout << "x=" << x << "
";
std::cout << "y=" << y << "
";
此代码在我的系统上的输出,其中 double 是 64 位,long double 96,是
The output for this code on my system, where double is 64 bits and long double 96, is
x=9
y=8.9999999999999999895916591441391574335284531116485595703125
这里发生的是 x 在赋值之前四舍五入,因为常量被隐式转换为 double,而 8.99999999999999999 不是可表示为 64 位浮点数.(请注意,作为 long double 的表示也不完全精确.9 的第一个字符串之后的所有数字都试图近似十进制数 8.99999999999999999 尽可能使用 96 个二进制位.)
What's happening here is that x gets rounded before the assignment, because the constant is implicitly converted to a double, and 8.99999999999999999 is not representable as a 64-bit floating point number. (Note that the representation as a long double is not fully precise either. All of the digits after the first string of 9s are an attempt to approximate the decimal number 8.99999999999999999 as closely as possible using 96 binary bits.)
在您的示例中,不需要 L 常量,因为 3.0 可以精确表示为 double 或 长双.double 常量值被隐式转换为 long double 而不会损失任何精度.
In your example, there is no need for the L constant, because 3.0 is representable precisely as either a double or a long double. The double constant value is implicitly converted to a long double without any loss of precision.
F 的情况并不那么明显.正如 Zan Lynx 指出的那样,它可以帮助解决超载问题.我不确定,但它也可以避免一些微妙的舍入错误(即,编码为 float 可能会与编码为 double 产生不同的结果,然后四舍五入为 float).
The case with F is not so obvious. It can help with overloading, as Zan Lynx points out. I'm not sure, but it may also avoid some subtle rounding errors (i.e., it's possible that encoding as a float will give a different result from encoding as a double then rounding to a float).
这篇关于为什么需要在分配给 C++ 常量的值后附加 L 或 F?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:为什么需要在分配给 C++ 常量的值后附加 L 或 F?
基础教程推荐
- 通过引用传递 C++ 迭代器有什么问题? 2022-01-01
- CString 到 char* 2021-01-01
- 我应该对 C++ 中的成员变量和函数参数使用相同的名称吗? 2021-01-01
- GDB 显示调用堆栈上函数地址的当前编译二进制文 2022-09-05
- 为什么 RegOpenKeyEx() 在 Vista 64 位上返回错误代码 2021-01-01
- 初始化列表*参数*评估顺序 2021-01-01
- 非静态 const 成员,不能使用默认赋值运算符 2022-10-09
- 如果我为无符号变量分配负值会发生什么? 2022-01-01
- 为什么派生模板类不能访问基模板类的标识符? 2021-01-01
- 为什么 typeid.name() 使用 GCC 返回奇怪的字符以及如 2022-09-16
