java.lang.StrictMath.min(double a, double b) 方法返回兩個double的較小值。
如果該引數的值相同,其結果為引數相同的值。如果任一值為NaN,那麼結果為NaN。
這種方法認為負零嚴格小於正零。如果一個引數是正零,而另一個是負零,則結果為負零。
以下是java.lang.StrictMath.min()方法的宣告
public static double min(double a, double b)
a -- 這是一個double值。
b -- 這是另一個double值。
這個方法返回a和b之間的最小值。
NA
下面的例子顯示java.lang.StrictMath.min()方法的使用。
package com.yiibai; import java.lang.*; public class StrictMathDemo { public static void main(String[] args) { double d1 = 10 , d2 = 40, d3 = -25; // both positive values double minValue = StrictMath.min(d1, d2); System.out.println("StrictMath.min(10, 40) : " + minValue); // one positive and one negative value minValue = StrictMath.min(d1, d3); System.out.println("StrictMath.min(10, -25) : " + minValue); } }
讓我們編譯並執行上述程式,這將產生以下結果:
StrictMath.min(10, 40) : 10.0 StrictMath.min(10, -25) : -25.0