Java - StrictMath min(float x, float y) 方法



描述

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

声明

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

public static float min(float a,  float b)

参数

  • a − 一个参数

  • b − 另一个参数

返回值

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

异常

获取两个正浮点数的最小值示例

以下示例演示了如何使用两个正值的 StrictMath min() 方法。

package com.tutorialspoint;

public class StrictMathDemo {

   public static void main(String[] args) {

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

输出

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

StrictMath.min(60984.1,497.99)=497.99

获取一个正浮点数和一个负浮点数的最小值示例

以下示例演示了如何使用一个正值和一个负值的 StrictMath min() 方法。

package com.tutorialspoint;

public class StrictMathDemo {

   public static void main(String[] args) {

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

输出

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

StrictMath.min(-60984.1,497.99)=-60984.1

获取两个负浮点数的最小值示例

以下示例演示了如何使用两个负值的 StrictMath min() 方法。

package com.tutorialspoint;

public class StrictMathDemo {

   public static void main(String[] args) {

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

输出

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

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