Java Math asin() 方法返回指定值的反正弦值。
反正弦是正弦函数的倒数。
用法:
Math.asin(double num)
在这里,asin()
是一个静态方法。因此,我们使用类名 Math
访问该方法。
参数:
asin()
方法采用单个参数。
- num- 要返回其反正弦的数字
注意:绝对值num
应始终小于1.
返回:
- 返回指定数字的反正弦值
- 如果指定的值为零,则返回 0
- 如果指定的数字是
NaN
或大于 1,则返回NaN
注意:返回值是一个夹角-pi/2 to pi/2.
示例 1:Java 数学 asin()
import java.lang.Math;
class Main {
public static void main(String[] args) {
// create variable
double a = 0.99;
double b = 0.71;
double c = 0.0;
// print the arcsine value
System.out.println(Math.asin(a)); // 1.4292568534704693
System.out.println(Math.asin(b)); // 0.7812981174487247
System.out.println(Math.asin(c)); // 0.0
}
}
在上面的例子中,我们已经导入了java.lang.Math
包。如果我们想使用Math
类的方法,这一点很重要。注意表达式,
Math.asin(a)
在这里,我们直接使用了类名来调用方法。这是因为asin()
是一个静态方法。
示例 2:数学 asin() 返回 NaN
import java.lang.Math;
class Main {
public static void main(String[] args) {
// create variable
double a = 2;
// square root of negative number
// results in not a number (NaN)
double b = Math.sqrt(-5);
// print the arc sine value
System.out.println(Math.asin(a)); // NaN
System.out.println(Math.asin(b); // NaN
}
}
在这里,我们创建了两个名为 a
和 b
的变量。
- Math.asin(a)- 返回 NaN,因为值为
a
大于 1 - Math.asin(b)- 返回 NaN,因为负数 (-5) 的平方根不是数字
注意: 我们用过Math sqrt计算一个数的平方根的方法。
相关用法
- Java Math asin()用法及代码示例
- Java Math addExact(long x, long y)用法及代码示例
- Java Math addExact()用法及代码示例
- Java Math atan2()用法及代码示例
- Java Math acos()用法及代码示例
- Java Math addExact(int a, int b)用法及代码示例
- Java Math atan()用法及代码示例
- Java Math abs()用法及代码示例
- Java Math sqrt()用法及代码示例
- Java Math sinh()用法及代码示例
- Java Math nextAfter()用法及代码示例
- Java Math cos()用法及代码示例
- Java Math multiplyFull()用法及代码示例
- Java Math incrementExact(int x)用法及代码示例
- Java Math tan()用法及代码示例
- Java Math nextUp()用法及代码示例
- Java Math max()用法及代码示例
- Java Math incrementExact()用法及代码示例
- Java Math floorMod()用法及代码示例
- Java Math exp()用法及代码示例
注:本文由纯净天空筛选整理自 Java Math asin()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。