#define HUGE_VALF /*implementation defined*/ |
|
(C++11 起) |
#define HUGE_VAL /*implementation defined*/ |
|
|
#define HUGE_VALL /*implementation defined*/ |
|
(C++11 起) |
| | |
HUGE_VALF
,
HUGE_VAL
和
HUGE_VALL
宏扩展到积极的浮点常量表达式中的浮点函数和运算符在溢出的情况下返回的值相等的.
原文:
The HUGE_VALF
, HUGE_VAL
and HUGE_VALL
macros expand to positive floating point constant expressions which compare equal to the values returned by floating-point functions and operators in case of overflow.
文本通过
谷歌翻译机器翻译。
你可以帮忙校正和验证翻译。点击
此处查看指示。
|
常数 原文: Constant 文本通过 谷歌翻译机器翻译。 你可以帮忙校正和验证翻译。点击 此处查看指示。
|
Explanation
|
HUGE_VALF
|
展开积极 float表达式,表示溢出 原文: Expands to positive float expression that indicates overflow 文本通过 谷歌翻译机器翻译。 你可以帮忙校正和验证翻译。点击 此处查看指示。
|
HUGE_VAL
|
扩展到积极 double表达式,表示溢出,不一定表示为一个 float原文: Expands to positive double expression that indicates overflow, not necessarily representable as a float 文本通过 谷歌翻译机器翻译。 你可以帮忙校正和验证翻译。点击 此处查看指示。
|
HUGE_VALL
|
扩展到积极 long double表达式,表示溢出,不一定表示为一个 float或 double原文: Expands to positive long double expression that indicates overflow, not necessarily representable as a float or double 文本通过 谷歌翻译机器翻译。 你可以帮忙校正和验证翻译。点击 此处查看指示。
|
的实现,支持浮点无穷大,这些宏扩展到正无穷大
float,
double,
long double,分别.
原文:
On implementations that support floating-point infinities, these macros always expand to the positive infinities of float, double, and long double, respectively.
文本通过
谷歌翻译机器翻译。
你可以帮忙校正和验证翻译。点击
此处查看指示。