INFINITY
来自cppreference.com
![]() |
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
定义于头文件 <cmath>
|
||
#define INFINITY /*implementation defined*/ |
(C++11 起) | |
宏
INFINITY
扩展到float类型的常量表达式的计算结果为正数或无符号无穷大,如果支持的实施,或为正值,即保证在编译时溢出float.原文:
The macro
INFINITY
expands to constant expression of type float which evaluates to positive or unsigned infinity, if supported by implementation, or to a positive value that is guaranteed to overflow a float at compile time.[编辑] 另请参阅
[静态] |
返回正无穷大值给定的浮点类型 原文: returns the positive infinity value of the given floating-point type ( std::numeric_limits 的公开静态成员函数)
|
(C++11) |
检查给定的浮点值是否是无限值 原文: checks if the given number is infinite (函数) |