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


Java Math.max()用法及代碼示例


  • Java.lang.math.max()是 Java 中的內置方法,用於從給定的兩個參數返回最大值或最大值。參數采用 int、float、double 和 long 格式。

用法:

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

參數:

a:first value
b:second value

返回:

This method returns maximum of two numbers.
  • 如果我們提供正值和負值作為參數,此方法將返回正參數。
  • 如果我們提供兩個負值作為參數,則返回值較小的數字作為結果。
  • 如果參數不是數字(NaN),則此方法將返回 NaN。

範例1:

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

輸出:

50 

範例2:

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

輸出:

25.67

範例3:

public class MaxExample3 
{
    public static void main(String args[])
    {
        float x = -25.74f;
        float y = -20.38f;
        //print the maximum of two numbers 
        System.out.println(Math.max(x, y));
    }
}

輸出:

-20.38






相關用法


注:本文由純淨天空篩選整理自 Java Math.max() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。