hypot()
方法hypot()方法在java.lang包中可用。
hypot()方法用于返回sqrt(sq(d1)+ sq(d2))的平方根,而不进行任何中间运算,换句话说,它返回sqrt(sq(d1)+ sq(d2))。
hypot()方法是静态方法,因此可以使用类名进行访问,如果尝试使用类对象访问该方法,则不会收到错误。
hypot()方法不会引发任何异常。
语法:
public static double hypot(double d1 , double d2);
参数:
double d1和double d2 –表示用于计算hypot的值。
返回值:
此方法的返回类型为double-它返回给定参数的平方根。
注意:
如果我们在任何参数中传递无穷大,则method返回正无穷大。
如果我们在任何参数中传递NaN,则方法返回NaN。
示例
//Java程序演示示例 //的hypot(double d1,double d2)方法 //StrictMath类。 public class Hypot { public static void main(String[] args) { //变量声明 double d1 = 7.0 / 0.0; double d2 = 5.0; double d3 = 10.0; //显示d1,d2和d3的先前值 System.out.println("d1: " + d1); System.out.println("d2: " + d2); System.out.println("d3: " + d3); //在这里,我们将得到(Infinity),因为我们 //传递参数,其值为(d2,d1) System.out.println("StrictMath.hypot(d2,d1): " + StrictMath.hypot(d2, d1)); //在这里,我们将得到(sqrt(sq(d2)+ sq(d3))),因为我们 //传递参数,其值为(d2,d3) System.out.println("StrictMath.hypot(d2,d3): " + StrictMath.hypot(d2, d3)); } }
输出结果
d1: Infinity d2: 5.0 d3: 10.0 StrictMath.hypot(d2,d1): Infinity StrictMath.hypot(d2,d3): 11.180339887498949