java.lang.Math.min(double a, double b)方法實例
java.lang.Math.min(double a, double b) 返回兩個double值的較小值。即,其結果是該值越接近負無窮大。如果該參數具有相同的值,其結果是相同的值。如果任一值為NaN,那麼結果為NaN。與數值比較運算不同,該方法認為負零嚴格小於正零。如果一個參數是正零,而另一個是負零,則結果為負零。
聲明
以下是java.lang.Math.min()方法的聲明
public static double min(double a, double b)
參數
-
a -- 參數
-
b -- 另一個參數
返回值
這個方法返回a和b的較小值。
異常
-
NA
例子
下麵的例子顯示lang.Math.min()方法的使用。
package com.yiibai; import java.lang.*; public class MathDemo { public static void main(String[] args) { // get two double numbers double x = 9875.875; double y = 154.134; // print the smaller number between x and y System.out.println("Math.min(" + x + "," + y + ")=" + Math.min(x, y)); } }
讓我們編譯並運行上述程序,這將產生以下結果:
Math.min(9875.875, 154.134)=154.134