Java Math.hypot() 方法
java.lang.Math.hypot() 用于返回的指定的参数的平方和的平方根,没有中间溢出或下溢。
1 语法
public static double hypot(double x, double y)
2 参数
x :第一个参数
y :第二个参数
3 返回值
返回sqrt(x2 + y2),而没有中间的上溢或下溢。
- 如果参数为正值或负值,则此方法将返回输出。
- 如果参数中的任意一个是正无穷大或负无穷大,则此方法将返回正无穷大。
- 如果参数为NaN并且两个参数都不为无限,则此方法将返回NaN。
4 示例1
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
public class Demo
{
public static void main(String[] args)
{
double a = 8;
double b = 6;
// /返回sqrt的值(2的幂+ 2的b幂)
System.out.println(Math.hypot(a, b));
}
}
输出结果为:
10.0
5 示例2
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
public class Demo
{
public static void main(String[] args)
{
double x = -4;
double y = 3;
// 返回sqrt的值((-4)2的幂+(3)2的幂
System.out.println(Math.hypot(x, y));
}
}
输出结果为:
5.0
6 示例3
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
public class Demo
{
public static void main(String[] args)
{
double a = Double.POSITIVE_INFINITY;
double b = 73;
// 当1个或多个参数为无穷大时,输出无穷大
System.out.println(Math.hypot(a, b));
}
}
输出结果为:
Infinity
7 示例4
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
public class Demo
{
public static void main(String[] args)
{
double a = 0.0/0;
double b = 67;
// 当1个或多个参数为NaN时,输出NaN
System.out.println(Math.hypot(a, b));
}
}
输出结果为:
NaN
热门文章
优秀文章