Java min() 方法

min() 方法用于返回两个参数中的最小值。

语法

该方法有以下几种语法格式:

  1. double min(double arg1, double arg2)
  2. float min(float arg1, float arg2)
  3. int min(int arg1, int arg2)
  4. long min(long arg1, long arg2)

参数

该方法接受两个原生数据类型作为参数。

返回值

返回两个参数中的最小值。

实例

  1. public class Test{
  2. public static void main(String args[]){
  3. System.out.println(Math.min(12.123, 12.456));
  4. System.out.println(Math.min(23.12, 23.0));
  5. }
  6. }

编译以上程序,输出结果为:

  1. 12.123
  2. 23.0