📅  最后修改于: 2023-12-03 15:16:26.746000             🧑  作者: Mango
StrictMath.hypot(double x, double y)
方法用于计算两个指定的double类型参数的欧几里得范数。欧几里得范数(Euclidean norm)又称欧几里得长度(Euclidean length),指的是从原点到向量x的欧氏距离。
public static double hypot(double x, double y)
x
:一个端点y
:另一个端点import java.lang.*;
public class Main {
public static void main(String[] args) {
double x = 3.0;
double y = 4.0;
double z = StrictMath.hypot(x, y);
System.out.println(z); // 输出 5.0
}
}
StrictMath.hypot(double x, double y)
方法返回的范围为正无穷,有可能引发 ArithmeticException
异常。