当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Math.min()用法及代码示例


  • Java.lang.math.min() 是 Java 中的一个内置方法,用于从给定的两个参数返回最小值或最低值。参数采用 int、float、double 和 long 格式。

用法:

public static int min(int a, int b)
public static double min(double a, double b)
public static long min(long a, long b)
public static float min(float a, float b)

参数:

a:first value
b:second value

返回:

This method returns minimum of two numbers.
  • 如果我们提供正值和负值作为参数,此方法将返回负参数。
  • 如果我们提供两个负值作为参数,则返回具有较高幅度的数字作为结果。
  • 如果参数不是数字(NaN),则此方法将返回 NaN。

范例1:

public class MinExample1 
{
    public static void main(String args[])
    {
        int x = 20;
        int y = 50;
        //print the minimum of two numbers 
        System.out.println(Math.min(x, y));
    }
}

输出:

20

范例2:

public class MinExample2 
{
    public static void main(String args[])
    {
        double x = 25.67;
        double y = -38.67;
        //print the minimum of two numbers 
        System.out.println(Math.min(x, y));
    }
}

输出:

-38.67

范例3:

public class MinExample3 
{
    public static void main(String args[])
    {
        float x = -55.73f;
        float y = -30.95f; 
        //print the minimum of two numbers 
        System.out.println(Math.min(x, y));
    }
}

输出:

-55.73






相关用法


注:本文由纯净天空筛选整理自 Java Math.min() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。