std::isgreater
提供:cppreference.com
|
|
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
| Defined in header <cmath>
|
||
| bool isgreater( float x, float y ); |
(C + + 11以来) | |
| bool isgreater( double x, double y ); |
(C + + 11以来) | |
| bool isgreater( long double x, long double y ); |
(C + + 11以来) | |
浮動小数点数
x浮動小数点演算の例外を設定せずに、浮動小数点数(y)より大きいかどうかを判断します.Original:
Determines if the floating point number
x is greater than the floating-point number (y), without setting floating-point exceptions.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
目次 |
[編集] パラメータ
| x | - | 浮動小数点値
Original: floating point value The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| y | - | 浮動小数点値
Original: floating point value The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[編集] 値を返します
truex > yもし、そうでなければfalse
Original:
true if x > y, false otherwise
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[編集] ノート
引数のいずれかまたは両方がNaNの場合は、浮動小数点数のためのビルトインoperator>はFE_INVALIDを設定することができます。この関数は、operator>の "静かな"バージョンです.
Original:
The built-in operator> for floating-point numbers may set FE_INVALID if one or both of the arguments is NaN. This function is a "quiet" version of operator>.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[編集] も参照してください
| x > yを実装する関数オブジェクト Original: function object implementing x > y The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (クラステンプレート) | |
| (C++11) |
最初の浮動小数点引数であればチェックは1秒未満である Original: checks if the first floating-point argument is less than the second The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (機能) |