java.lang.StrictMath.min(float a, float b)方法範例


java.lang.StrictMath.min(float a, float b) 方法返回兩個浮點的最小值。

如果該引數具有相同的值,其結果為引數相同的值。如果任一值為NaN,那麼結果為NaN。

這種方法認為負零嚴格小於正零。如果一個引數是正零,而另一個是負零,則結果為負零。

宣告

以下是java.lang.StrictMath.min()方法的宣告

public static float min(float a, float b)

引數

  • a -- 這是一個float值。

  • b -- 這是另一個float值。

返回值

這個方法返回a和b之間的最小值。

異常

  • NA

例子

下面的例子顯示java.lang.StrictMath.min()方法的使用。

package com.yiibai;

import java.lang.*;

public class StrictMathDemo {

  public static void main(String[] args) {
  
    float f1 = 50 , f2 = 100, f3 = -25;

    // both positive values
    double minValue = StrictMath.min(f1, f2); 
    System.out.println("StrictMath.min(50, 100) : " + minValue);
        
    // one positive and one negative value
    minValue = StrictMath.min(f1, f3); 
    System.out.println("StrictMath.min(50, -25) : " + minValue);    
  }
}

讓我們來編譯和執行上面的程式,這將產生以下結果:

StrictMath.min(50, 100) : 50.0
StrictMath.min(50, -25) : -25.0