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


Java Java.lang.Math.hypot()用法及代码示例



描述

这个java.lang.Math.hypot(double x, double y)返回 sqrt(x2+y2) 没有中间溢出或下溢。特别案例:

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

  • 如果任一参数为 NaN 且两个参数都不是无限的,则结果为 NaN。

声明

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

public static double hypot(double x, double y)

参数

  • x− 一个值

  • y− 一个值

返回值

此方法返回 sqrt(x2+y2) 没有中间溢出或下溢

异常

NA

示例

下面的例子展示了 lang.Math.hypot() 方法的用法。

package com.tutorialspoint;

import java.lang.*;

public class MathDemo {

   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("Math.hypot(" + x + "," + y + ")=" + Math.hypot(x, y));
   }
}

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

Math.hypot(60984.1, -497.99)=60986.133234122164

相关用法


注:本文由纯净天空筛选整理自 Java.lang.Math.hypot() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。