Single.MaxNumber(Single, Single) Metodo

Definizione

Confronta due valori per calcolare che è maggiore e restituisce l'altro valore se un input è NaN.

public:
 static float MaxNumber(float x, float y) = System::Numerics::INumber<float>::MaxNumber;
public static float MaxNumber (float x, float y);
static member MaxNumber : single * single -> single
Public Shared Function MaxNumber (x As Single, y As Single) As Single

Parametri

x
Single

Valore da confrontare con y.

y
Single

Valore da confrontare con x.

Restituisce

x se è maggiore di y; in caso contrario, y.

Implementazioni

Commenti

Per IFloatingPoint<TSelf> questo metodo corrisponde alla funzione IEEE 754:2019 maximumNumber . Ciò richiede che gli input NaN non vengano propagati nuovamente al chiamante e per -0.0 essere trattati come meno di +0.0.

Si applica a