std::islessgreater
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <cmath> 中定义
|
||
bool islessgreater( float x, float y ); |
(C++11 起) | |
bool islessgreater( double x, double y ); |
(C++11 起) | |
bool islessgreater( long double x, long double y ); |
(C++11 起) | |
浮点数
x
确定是否小于或大于的浮点数y
,而不设置浮点异常.原文:
Determines if the floating point number
x
is less than or greater than the floating-point number y
, without setting floating-point exceptions.目录 |
[编辑] 参数
x | - | 浮点值
|
y | - | 浮点值
|
[编辑] 返回值
true如果x < y || x > y,false其他方式
原文:
true if x < y || x > y, false otherwise
[编辑] 注释
内置在operator<和operator>,浮点数提高FE_INVALID如果一个或两个的参数是NaN。这个函数是一个“安静”的表达x < y || x > y版本.
原文:
The built-in operator< and operator> for floating-point numbers may raise FE_INVALID if one or both of the arguments is NaN. This function is a "quiet" version of the expression x < y || x > y.
[编辑] 另请参阅
(C++11) |
第一浮点参数的检查,如果是小于第二个 原文: checks if the first floating-point argument is less than the second (函数) |
(C++11) |
第一浮点参数的检查,如果是大于第二个 原文: checks if the first floating-point argument is greater than the second (函数) |