Java min() 方法

2019-10-16 22:22:59

該方法返回兩個引數中較小的一個。 引數型別可以是:intfloatlongdouble

語法

此方法有以下變體 -

double min(double arg1, double arg2)
float min(float arg1, float arg2)
int min(int arg1, int arg2)
long min(long arg1, long arg2)

引數

  • 此方法接受任何基本資料型別作為引數。

返回值

  • 此方法返回兩個引數中較小的一個。

範例

public class Test {

   public static void main(String args[]) {
      System.out.println(Math.min(12.123, 12.456));      
      System.out.println(Math.min(23.12, 23.0));  
   }
}

執行上面範例程式碼,得到以下結果:

12.123
23.0