當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。