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



描述

Java StrictMath hypot(double x, double y) 方法返回 sqrt(x2 +y2),避免中间过程出现溢出或下溢。特殊情况:

  • 如果任一参数是无穷大,则结果为正无穷大。

  • 如果任一参数是 NaN 且都不是无穷大,则结果为 NaN。

声明

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

public static double hypot(double x, double y)

参数

  • x − 一个值

  • y − 一个值

返回值

此方法返回 sqrt(x2 +y2),避免中间过程出现溢出或下溢。

异常

获取双精度值的平方根,针对负值示例

以下示例演示了 StrictMath hypot() 方法的用法。

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 hypot and print the result
      System.out.println("StrictMath.hypot(" + x + "," + y + ")=" + StrictMath.hypot(x, y));
   }
}

输出

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

StrictMath.hypot(60984.1,-497.99)=60986.133234122164

获取双精度值的平方根,针对负零值示例

以下示例演示了 StrictMath hypot() 方法在零值情况下的用法。

package com.tutorialspoint;

public class StrictMathDemo {

   public static void main(String[] args) {

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

输出

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

StrictMath.hypot(0.0,-0.0)=0.0

获取双精度值的平方根,针对负一值示例

以下示例演示了 StrictMath hypot() 方法在 1 值情况下的用法。

package com.tutorialspoint;

public class StrictMathDemo {

   public static void main(String[] args) {

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

输出

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

StrictMath.hypot(1.0,-1.0)=1.4142135623730951
java_lang_strictmath.htm
广告