當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。