Java Math sin() 返回指定角度的三角正弦值。
用法:
Math.sin(double angle)
在这里,sin()
是一个静态方法。因此,我们使用类名 Math
访问该方法。
参数:
sin()
方法采用单个参数。
- angle- 要返回三角正弦的角度
注意: 的价值angle
以弧度为单位。
返回:
- 返回指定的三角正弦角度
- 如果指定的角度是,则返回 NaNNaN 或无穷大
注意:如果参数为零,则结果sin()
方法也是零与参数相同的符号。
示例 1:Java 数学 sin()
import java.lang.Math;
class Main {
public static void main(String[] args) {
// create variable in Degree
double a = 30;
double b = 45;
// convert to radians
a = Math.toRadians(a);
b = Math.toRadians(b);
// print the sine value
System.out.println(Math.sin(a)); // 0.49999999999999994
System.out.println(Math.sin(b)); // 0.7071067811865475
// sin() with 0 as its argument
System.out.println(Math.sin(0.0)); // 0.0
}
}
在上面的例子中,我们已经导入了java.lang.Math
包。导入包是一个好习惯。注意表达式,
Math.sin(a)
在这里,我们直接使用了类名来调用方法。这是因为sin()
是一个静态方法。
注意: 我们用过Math toradians将所有值转换为弧度的方法。这是因为根据官方 Java 文档,sin()
方法将参数作为弧度。
示例 2:数学 sin() 返回 NaN
import java.lang.Math;
class Main {
public static void main(String[] args) {
// create variable
// square root of negative number
// results in not a number (NaN)
double a = Math.sqrt(-5);
// Using Double to implement infinity
double infinity = Double.POSITIVE_INFINITY;
// print the sine value
System.out.println(Math.sin(a)); // NaN
System.out.println(Math.sin(infinity)); // NaN
}
}
在这里,我们创建了一个名为 a
的变量。
- Math.sin(a)- 返回 NaN,因为负数 (-5) 的平方根不是数字
Double.POSITIVE_INFINITY
是Double
类的一个字段。它用于在 Java 中实现无穷大。
注意: 我们用过Math sqrt计算一个数的平方根的方法。
相关用法
- Java Math sin()用法及代码示例
- Java Math sinh()用法及代码示例
- Java Math sqrt()用法及代码示例
- Java Math subtractExact(long x, long y)用法及代码示例
- Java Math subtractExact(int a , int b)用法及代码示例
- Java Math subtractExact()用法及代码示例
- Java Math scalb()用法及代码示例
- Java Math addExact(long x, long y)用法及代码示例
- Java Math nextAfter()用法及代码示例
- Java Math cos()用法及代码示例
- Java Math multiplyFull()用法及代码示例
- Java Math incrementExact(int x)用法及代码示例
- Java Math tan()用法及代码示例
- Java Math nextUp()用法及代码示例
- Java Math addExact()用法及代码示例
- Java Math atan2()用法及代码示例
- Java Math max()用法及代码示例
- Java Math incrementExact()用法及代码示例
- Java Math floorMod()用法及代码示例
- Java Math acos()用法及代码示例
注:本文由纯净天空筛选整理自 Java Math sin()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。