HUGE_VALF
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <math.h> 中定义
|
||
#define HUGE_VALF /*implementation defined*/ |
||
#define HUGE_VAL /*implementation defined*/ |
||
#define HUGE_VALL /*implementation defined*/ |
||
HUGE_VALF
,HUGE_VAL
和HUGE_VALL
宏展开积极的浮点常量表达式. 原文:
The
HUGE_VALF
, HUGE_VAL
and HUGE_VALL
macros expands to a positive floating point constant expression. 常数
|
Explanation |
HUGE_VALF
|
表示该值无法表示的float类型(无穷大)
原文: Indicates that the value is not representable by the float type (infinity) |
HUGE_VAL
|
表示的值是不是表示的double类型(无穷大)。
中恒是不是一定作为float表示 原文: Indicates that the value is not representable by the double type (infinity). The constant is not necessarily representable as a float |
HUGE_VALL
|
表示的值无法表示的long double类型(无穷大)。
The不变的是未必表示作为一个float或double 原文: Indicates that the value is not representable by the long double type (infinity). The constant is not necessarily representable as a float or double |
[编辑] 另请参阅
C++ documentation for HUGE_VAL
|