java.lang.Math.min(int a, int b)方法實例
java.lang.Math.min(int a, int b) 返回兩個int值較小值。即,其結果是該值越接近負無窮大。如果該參數具有相同的值,其結果是相同的值。如果任一值為NaN,那麼結果為NaN。與數值比較運算不同,該方法認為負零嚴格小於正零。如果一個參數是正零,而另一個是負零,則結果為負零。
聲明
以下是java.lang.Math.min()方法的聲明
public static int min(int a, int 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 int numbers int x = 9875; int y = 154; // print the smaller number between x and y System.out.println("Math.min(" + x + "," + y + ")=" + Math.min(x, y)); } }
讓我們來編譯和運行上麵的程序,這將產生以下結果:
Math.min(9875, 154)=154