Java - StrictMath max(double x, double y) 方法



描述

Java StrictMath max(double a, double b) 方法返回两个双精度浮点数中较大的一个。也就是说,结果是更接近正无穷大的参数。如果参数的值相同,则结果为该相同的值。如果任一值是 NaN,则结果为 NaN。与数值比较运算符不同,此方法认为负零严格小于正零。如果一个参数是正零,另一个参数是负零,则结果是正零。

声明

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

public static double max(double a, double b)

参数

  • a − 一个参数

  • b − 另一个参数

返回值

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

异常

获取两个正双精度浮点数的最大值示例

以下示例显示了两个正值的 StrictMath max() 方法的使用。

package com.tutorialspoint;

public class StrictMathDemo {

   public static void main(String[] args) {

      // get two double numbers
      double x = 60984.1;
      double y = 497.99;
   
      // call max and print the result
      System.out.println("StrictMath.max(" + x + "," + y + ")=" + StrictMath.max(x, y));
   }
}

输出

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

StrictMath.max(60984.1,497.99)=60984.1

获取一个正双精度浮点数和一个负双精度浮点数的最大值示例

以下示例显示了一个正值和一个负值的 StrictMath max() 方法的使用。

package com.tutorialspoint;

public class StrictMathDemo {

   public static void main(String[] args) {

      // get two double numbers
      double x = -60984.1;
      double y = 497.99;
   
      // call max and print the result
      System.out.println("StrictMath.max(" + x + "," + y + ")=" + StrictMath.max(x, y));
   }
}

输出

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

StrictMath.max(-60984.1,497.99)=497.99

获取两个负双精度浮点数的最大值示例

以下示例显示了两个负值的 StrictMath max() 方法的使用。

package com.tutorialspoint;

public class StrictMathDemo {

   public static void main(String[] args) {

      // get two double numbers
      double x = -60984.1;
      double y = -497.99;
   
      // call max and print the result
      System.out.println("StrictMath.max(" + x + "," + y + ")=" + StrictMath.max(x, y));
   }
}

输出

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

StrictMath.max(-60984.1,-497.99)=-497.99
java_lang_strictmath.htm
广告