java.lang.StrictMath.min(double a, double b)方法實例
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