Java - Math max(int x, int y) 方法



描述

java.lang.Math.max(int a, int b) 返回两个 int 值中较大的一个。也就是说,结果是更接近正无穷大的参数。如果参数具有相同的值,则结果是相同的值。如果任一值为 NaN,则结果为 NaN。与数值比较运算符不同,此方法认为负零严格小于正零。如果一个参数是正零,另一个参数是负零,则结果是正零。

声明

以下是 java.lang.Math.max() 方法的声明

public static int max(int a, int b)

参数

  • a − 一个参数

  • b − 另一个参数

返回值

此方法返回 a 和 b 中较大的一个。

异常

获取两个正整数最大值示例

以下示例演示了两个正值使用 Math max() 方法的情况。

package com.tutorialspoint;

public class MathDemo {

   public static void main(String[] args) {

      // get two int numbers
      int x = 60984;
      int y = 497;
   
      // call max and print the result
      System.out.println("Math.max(" + x + "," + y + ")=" + Math.max(x, y));
   }
}

输出

让我们编译并运行以上程序,这将产生以下结果:

Math.max(60984,497)=60984

获取一个正整数和一个负整数最大值示例

以下示例演示了一个正值和一个负值使用 Math max() 方法的情况。

package com.tutorialspoint;

public class MathDemo {

   public static void main(String[] args) {

      // get two int numbers
      int x = -60984;
      int y = 497;
   
      // call max and print the result
      System.out.println("Math.max(" + x + "," + y + ")=" + Math.max(x, y));
   }
}

输出

让我们编译并运行以上程序,这将产生以下结果:

Math.max(-60984,497)=497

获取两个负整数最大值示例

以下示例演示了两个负值使用 Math max() 方法的情况。

package com.tutorialspoint;

public class MathDemo {

   public static void main(String[] args) {

      // get two int numbers
      int x = -60984;
      int y = -497;
   
      // call max and print the result
      System.out.println("Math.max(" + x + "," + y + ")=" + Math.max(x, y));
   }
}

输出

让我们编译并运行以上程序,这将产生以下结果:

Math.max(-60984,-497)=-497
java_lang_math.htm
广告