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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。